Hello! I read in some book about Spring that there is a certain property when installing which you do not need to always restart the project. That is, we set the property in application.properties to true and if we make any changes, we simply reload the page in the browser. I do not remember the name of this property. Can anyone remember?
1 answer
Only if it is a Spring Boot project and Developer Tools are in the classpath:
pom.xml
... <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> </dependencies> ... - Thank. This is it. - Alex Ciornii
- To thank the author of the answer, vote for the answer or mark it as a decision. - Sergey Gornostaev
|