【Spring】XML配置比较注解配置

定义Bean bean标签(id属性Class属性)

@Component定义

        @Controller

        @Service

        @Repository

@ComponentScan扫包

设置依赖注入

Setter注入

构造器注入

自动装配

@Autowired

        @Qualifier

@Value

第三方Bean管理

bean标签

静态工厂、实例工厂

FactoryBean

@Bean注解
作用范围 scope属性 @Scope
生命周期

标准接口

        init-method

        destory-method

@PostConstructer

@PreDestory

你可能感兴趣的:(spring,xml,java)