秒杀01-项目框架搭建

秒杀01-项目框架搭建

一般会单独建一个MainApplication来启动springboot项目
秒杀01-项目框架搭建_第1张图片
秒杀01-项目框架搭建_第2张图片
但是我们在开发中一般使用的是@SpringBootApplication,@SpringBootApplication和@EnableAutoConfiguration都可以取启动我们的SpringBoot,它们两个有些许区别。

补充:@SpringBootApplication注解相当于使用@Configuration,@EnableAutoConfiguration以及@ComponentScan 与他们的默认属性。(@SpringBootApplication = @Configuration + @EnableAutoConfiguration + @ComponentScan)

就可以启动springboot了,访问localhost:8080会响应"Hello world"
秒杀01-项目框架搭建_第3张图片
感谢:
参考:https://blog.csdn.net/Brad_PiTt7/article/details/90604264

你可能感兴趣的:(秒杀)