相信很多小白刚刚开始学springtMVC时候会去到这个问题(以后主要一点倘若设置好之后发现访问不了那肯定是找不到这个类),首先就是注解好控制类之后,在主main的类中添加:
@ComponentScan(value = {“controller所在包名”})
例如我的:
@SpringBootConfiguration
@SpringBootApplication
@MapperScan(basePackages = “com.eshop”) //扫描的mapper
@ComponentScan(basePackages = “com.eshop.entity”)
@ComponentScan(basePackages = “com.eshop.controller”)
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
就扫描到了!!!