Google News
logo
Java Spring Boot - Interview Questions
How can I reload my Spring Boot changes without restarting the server?
This is achievable by Spring Boot Dev Tools module.it’s a powerful tool for development. It helps developers to shorten the development cycle and enable easy deployment and testing during development.
 
To enable this feature, add the following dependency to Maven POM file.
<dependencies>
    <dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-devtools</artifactId>
    </dependency>
</dependencies>
Advertisement