spirngboot的版本管理由下图管理,自动装配合适版本,如想修改版本,则在pom.xml中加上如下标签,并写相关标签
<!--要开发web场景,要导入他就会引入了所有相关依赖--> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
springboot默认主程序所在包及其子包下的组件会自动扫描.或者在SpringBootApplication(scanBasePackage="com.xu.")进行指定