spring 中@ComponentScan({"cn.edu.bcu.ipoms"})
时间: 2023-05-26 10:07:51 浏览: 158
springboot @ComponentScan注解原理解析
@ComponentScan({"cn.edu.bcu.ipoms"}) 是一个注解,它告诉 Spring 框架,要扫描 cn.edu.bcu.ipoms 包及其子包下的所有组件(包括 @Component、@Service、@Repository、@Controller 等)并注册为 Spring bean。这一步是让 Spring 能够自动发现和管理组件,方便进行依赖注入和控制反转。
阅读全文