时间:2021-05-19
前言
Spring框架对Bean进行装配提供了很灵活的方式,下面归纳一下主要的方式:
而自动装配实现就需要注解扫描,这时发现了两种开启注解扫描的方式,即<context:annotation-config/>和<context:component-scan>
下面归纳一下这两种方式的异同点:
<context:annotation-config>:注解扫描是针对已经在Spring容器里注册过的Bean
<context:component-scan>:不仅具备<context:annotation-config>的所有功能,还可以在指定的package下面扫描对应的bean
Demo:
Demo:XML注册Bean方式
下面给出两个类,类A和类B
package com.test;pubic class B{ public B(){ System.out.println("B类"); }}package com.test;public class A { private B bClass; public void setBClass(B bClass){ this.bClass = bClass; System.out.println("通过set的方式注入B类"); } public A(){ System.out.println("A类"); }}如何我们这时可以通过传统的xml配置在Application.xml里进行bean注册
<bean id="bBean"class="com.test.B"/><bean id="aBean"class="com.test.A"> <property name="bClass" ref="bBean"/></bean>启动加载Application.xml
输出:
类B
类A
通过set的方式注入B类
Demo:annotation配置注解开启方式
package com.test;pubic class B{ public B(){ System.out.println("B类"); }}package com.test;public class A { private B bClass; @Autowired public void setBClass(B bClass){ this.bClass = bClass; System.out.println("通过set的方式注入B类"); } public A(){ System.out.println("A类"); }}然后我们需要在Application.xml里注册Bean,假如我们先这样配置,仅仅注册Bean,不开启扫描
<bean id="bBean"class="com.test.B"/><bean id="aBean"class="com.test.A"/>或者仅仅开启扫描,不注册Bean
<context:annotation-config/>这时加载Application.xml配置
输出:
类B
类A
我们会发现下面的@Autowired的方法是不能被加载的
@Autowired public void setBClass(B bClass){ this.bClass = bClass; System.out.println("通过set的方式注入B类"); }解决方法:
修改Application.xml配置文件
<context:annotation-config/><bean id="bBean"class="com.test.B"/><bean id="aBean"class="com.test.A"/>重新加载配置文件,输出正常了
输出:
类B
类A
通过set的方式注入B类
归纳:<context:annotation-config>:注解扫描是针对已经在Spring容器里注册过的Bean
Demo:component配置注解开启方式
package com.test;pubic class B{ public B(){ System.out.println("B类"); }}package com.test;@Componentpublic class A { private B bClass; @Autowired public void setBClass(B bClass){ this.bClass = bClass; System.out.println("通过set的方式注入B类"); } public A(){ System.out.println("A类"); }}然后我们配置一下application.xml,开启annotaion-config扫描
<context:annotation-config />加载配置文件:
输出:
类B
类A
原因:<context:annotation-config>:注解扫描是针对已经在Spring容器里注册过的Bean,Bean并没有注册过,所以即使开启了@Autowired、@Component注解 和配置开启了annotaion-config扫描还是加载不到
修改配置文件:
<context:component-scan base-package="com.test"/>重新加载配置文件:
输出:
类B
类A
通过set的方式注入B类
归纳:
<context:annotation-config>:注解扫描是针对已经在Spring容器里注册过的Bean
<context:component-scan>:不仅具备<context:annotation-config>的所有功能,还可以在指定的package下面扫描对应的bean
<context:annotation-config />和 <context:component-scan>同时存在的时候,前者会被忽略。
即使注册Bean,同时开启<context:annotation-config />扫描,@autowire,@resource等注入注解只会被注入一次,也即只加载一次
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一,使用注解:在spring的配置文件applicationContext.xml中,加入注解扫描。配置项就配置了对指定的包进行扫描,以实现依赖注入。
spring容器依赖org.springframeworkspring-context5.0.5.RELEASE开启任务注解驱动。即扫描的时候扫描springt
使用注解配置spring一、步骤1.为主配置文件引入新的命名空间(约束)导入spring-context-4.2.xsdschema约束2.开启使用注解代理配置
在上篇文章给大家介绍了Spring学习笔记1之IOC详解尽量使用注解以及java代码,接下来本文重点给大家介绍Spring学习笔记2之表单数据验证、文件上传实例
Android注解相关文章:AndroidAOP注解Annotation详解(一)AndroidAOP之注解处理解释器详解(二)AndroidAOP注解详解及简