Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用

1、创建一个Spring Initializr项目(右键->Spring Starter Project)

Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第1张图片
Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第2张图片
Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第3张图片

2、在application.properties应用属性配置文件中可直接修改端口号(因为tomcat是内嵌在SpringBoot之中的)

Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第4张图片

3、在SpringBoot应用类的包下面创建Controller应用(注意一定要在应用类对应包下,否则扫描器无法扫描到你的类)

Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第5张图片

4、启动并通过路径访问资源

Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第6张图片
Spring Tool 4通过Spring Initializr快速搭建SpringBoot应用_第7张图片

5、总结

本人一开始进行学习时,用idea如鱼得水,后来用Spring tools运行SpringBoot时,发现怎么都不能扫描到Bean,一开始以为是工具的问题,直到我的idea遇到同样的问题。我们一定要把MVC三层架构的包创建在SpringBoot应用类对应的包下面,否则,我们的类无法被扫描器扫描到。希望大家引以为戒。如有不足之处,欢迎大家在下方留言。

你可能感兴趣的:(Springboot)