spring boot

Solutions on MaxInterview for spring boot by the best coders in the world

showing results for - "spring boot"
Giorgia
25 Feb 2016
1Spring Boot is an open source Java-based framework used to create a micro Service. It is developed by Pivotal Team and is used to build stand-alone and production ready spring applications.
Samuel
01 Jul 2017
1import org.springframework.boot.SpringApplication;
2import org.springframework.boot.autoconfigure.SpringBootApplication;
3
4@SpringBootApplication
5public class DemoApplication {
6   public static void main(String[] args) {
7      SpringApplication.run(DemoApplication.class, args);
8   }
9}
similar questions
queries leading to this page
spring boot