【Springboot 】使用@ComponentScan注解

(准备工作:新建个和memberController类一样的 IndexController类,具体看代码)

https://github.com/SsRong/springboot2.0-ssrtest01

我们在上个章节中学习了如何用@EnableAutoConfiguration来扫包自动配置,并启动springboot项目。但是上节课也讲到了@EnableAutoConfiguration的不足是它只能扫描本类中需要的配置。那么项目中其他类需要的配置就扫描不到了(比如IndexController类里的index.class就不能被部署到Tomcat上)。

1、引入注解@ComponentScan("com.ssrtest01.member.controller")

针对上面的问题,我们引入新的注解@ComponentScan("com.ssrtest01.member.controller")。意思是添加我们的一个扫描范围,这个扫描范围在我们整个的项目包里。

2、以上可以解决问题后,我们要把代码进行一些规范化 !

步骤:

2.1、先新建一个APP.java类

2.2、把启动的代码抽取出来单独运行

@EnableAutoConfiguration

@ComponentScan("com.ssrtest01.member.controller")

public classAPP{

public static void main(String[]args){

//整个程序的入口,启动springboot项目,创建内置Tomcat服务器,使用Tomcat加载SpringMVC注解启动类

SpringApplication.run(MemberController.class,args);

}

}

 

你可能感兴趣的:(SpringBoot学习笔记)