@SpringBootApplication怎么手动指定扫描组件的路径
时间: 2024-06-01 21:13:56 浏览: 127
springboot整合mybatis
@SpringBootApplication注解中有一个@ComponentScan注解,可以手动指定扫描组件的路径,例如:
@SpringBootApplication
@ComponentScan(basePackages = {"com.example.demo"})
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
其中,@ComponentScan注解中的basePackages参数可以指定需要扫描的组件路径。
阅读全文