首先用@Component注解类:
package soundsystem; import org.springframework.stereotype.Component; @Component public class TestBean{ …… }
开启组件扫描spring才能自动装配bean,创建一个@ComponentScan注解的类
package soundsystem; import org.springframework.context.annotation.componentScan; import org.springframework.context.annotation.Con; @ComponentScan public class TestBeanScan{ }
开启默认扫描,spring将扫描由@Component注解的类(在TestBeanScan类的soundsystem包或者其子包下),为其创建一个bean。
原文地址:https://www.cnblogs.com/zhangsblog12345/p/10856010.html
时间: 2024-12-28 20:21:30