Sunday, 25 February 2018

How to auto start Spring application after modifying the files ?


Add dependency in pom.xml of the application.
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
        </dependency>


It will enable auto-start of the web application, when we modify any file during development.

No comments:

Post a Comment

Note: only a member of this blog may post a comment.