Search This Blog

Tuesday, September 1, 2020

application.properties and Devtools

What is use of spring.jpa.hibernate.ddl-auto=create??

What are values we can provide for spring.jpa.hibernate.ddl-auto ??


Spring Boot 1.3 provides another module called Spring Boot DevTools. DevTools stands for Developer Tool. The aim of the module is to try and improve the development time while working with the Spring Boot application. Spring Boot DevTools pick up the changes and restart the application.

We can implement the DevTools in our project by adding the following dependency in the pom.xml file.

Advantages:

  • Property Defaults
  • Automatic Restart
  • LiveReload
  • Remote Debug Tunneling
  • Remote Update and Restart

No comments:

Post a Comment