Spring Boot In Action -

Spring Boot includes spring-boot-devtools , which enhances the development loop:

}

management: endpoints: web: exposure: include: health health: livenessstate: enabled: true readinessstate: enabled: true spring boot in action

Open a web browser and navigate to http://localhost:8080/ to see your application in action. Spring Boot includes spring-boot-devtools

A minimal REST API controller looks like this: spring boot in action