Spring Boot Features In Java
Spring Boot Features Spring Application Web Development Admin features Application events and listeners Externalized Configuration Properties Files YAML Support Type-safe Configuration Security Logging and many more... ⇒ Spring Application spring application is a class which provides the convenient way to bootstrap a spring application which can be started from main method. You can call start your application just by calling a static run() method. ⇒Web Development It is well suited Spring module for web application development. We can easily create a self-contained HTTP server using embedded Tomcat, Jetty or Undertow. We can use the spring-boot- starter-web module to start and running applications quickly. ⇒Admin Support Spring Boot provides the facility to enable admin related features for the application. It is used to access and manage a...