spring中自动装配bean
Posted zhangsblog12345
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring中自动装配bean相关的知识,希望对你有一定的参考价值。
首先用@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。
以上是关于spring中自动装配bean的主要内容,如果未能解决你的问题,请参考以下文章