spring boot 配置 component-scan
时间: 2024-01-18 20:04:14 浏览: 109
Spring Boot配置
可以通过在配置类上使用 @ComponentScan 注解来扫描指定包及其子包下的组件,例如:
@Configuration
@ComponentScan(basePackages = "com.example")
public class AppConfig {
// ...
}
这样就会扫描 com.example 包及其子包下的所有组件,包括 @Component、@Service、@Repository、@Controller 等。你也可以指定多个包,例如:
@ComponentScan(basePackages = {"com.example.service", "com.example.controller"})
public class AppConfig {
// ...
}
这样就只会扫描 com.example.service 和 com.example.controller 包及其子包下的组件。
阅读全文