`
Jeenry119
  • 浏览: 69282 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Spring注解

阅读更多
spring依赖注入
使用构造器注入

使用属性setter方法注入

使用Field注入(用于注解方式)



注入依赖对象可以采用手工装配或自动装配,在实际应用中建议使用手工装配,因为自动装配会产生未知情况,开发人员无法预见最终的装配结果。



1.手工装配依赖对象



              手工装配依赖对象,在这种方式中又有两种编程方式

                 *  在xml配置文件中,通过在bean节点下配置

                 *  在java代码中使用@Autowired或@Resource注解方式进行装配

              依赖注入--手工装配--XML方式

                     通过setter方法注入依赖

              <bean>元素的< property >子元素指明了使用它们的set方法来注入。可以注入任何东西,从基本类型到集合类,甚至是应用系统的bean。

                                   通过setter方法注入依赖

                      *   简单bean配置

                         配置bean的简单属性,基本数据类型和String。



                                         <beanid="personService" class="com.test.bean.impl.PersonServiceImpl">

                                   <!-- 基本类型,string类型 -->

                                   <propertyname="age"value="20"></property>

                                  <propertyname="name" value="张无忌"></property>                      

                            </bean>

              通过setter方法注入依赖

                     *引用其它bean

                           <beanid="person"class="com.test.bean.Person" />

                          <beanid="personService"

                                                    class="com.test.bean.impl.PersonServiceImpl">

                                    <!-- 引用类型 -->

                                   <propertyname="person" ref="person" />

                           </bean>

               * 内部bean

                         <beanid="personService"class="com.test.bean.impl.PersonServiceImpl">

                               <!-- 内部bean注入 -->

                             <propertyname="personClass">

                                 <beanclass="com.test.bean.PersonClass" />

                              </propert>

                          </bean>

                            这种方式的缺点是你无法在其它地方重用这个personClass实例,原因是它是专门为personService而用。



              *装配集合



                若bean的属性是集合类型,按如下处理:

                A、装配List和数组:



                <!-- 装配list -->

                                  <propertyname="lists">

                                              <list>

                                                  <value>list1</value>

                                                 <value>list2</value>

                                                  <refbean="person"/>

                                               </list>

                                  </property>

                     <!--装配数组 -->

       <property name="obj">

         <list>

                <value>obj1</value>

                <value>obj2</value>

               <refbean="person"/>

         </list>

       </property>



                     B、 装配set:

                            <!--装配set -->

       <property name="sets">

         <set>

                <value>set1</value>

                <value>set2</value>

              <refbean="person"/>

         </set>

       </property>

                     set使用方法和list一样,不同的是对象被装配到set中,而list是装配到List或数组中装配。



                     *装配集合

            C、装配map:

                    <!-- 装配map-->

                                  <propertyname="maps">

                                               <map>

                                                     <entrykey="01">

                                                           <value>map01</value>

                                                    </entry>

                                                    <entrykey="02">

                                                           <value>map02</value>

                                                    </entry>

                                               </map>

                                  </property>

                     map中的<entry>的数值和<list>以及<set>的一样,可以使任何有效的属性元素,需要注意的是key值必须是String的。

      D、装配Properties:

              <!--装配Properties  -->

      <property name="props">

         <props>

           <prop key="01">prop1</prop>

           <prop key="02">prop2</prop>

         </props>

      </property>

      E、设置null:

              <!--装配null -->

       <property name="listnull">

         <null/>

       </property>

      通过参数的顺序:

                    <constructor-argindex="0">

            <value>张三</value>

                     </constructor-arg>

                    <constructor-argindex="1">

                       <value>56</value>

                      </constructor-arg>



      通过构造函数注入依赖



                     <!--通过参数的类型 -->

                    <constructor-argtype="java.lang.Integer">

                           <value>56</value>

                     </constructor-arg>

                    <constructor-argtype="java.lang.String">

                            <value>张三</value>

                     </constructor-arg>



      依赖注入--手工装配—注解方式



                     在java代码中使用@Autowired或@Resource注解方式进行装配的前提条件是。

                                1、引入context命名空间 需要在xml配置文件中配置以下信息:

                              <beansxmlns="http://www.springframework.org/schema/beans"

                                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

                                 xmlns:context="http://www.springframework.org/schema/context"

                                 xsi:schemaLocation="http://www.springframework.org/schema/beans

                                     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

                                     http://www.springframework.org/schema/context

                                       http://www.springframework.org/schema/context/spring-context-2.5.xsd">

                                  <context:annotation-config/>

                            </beans>

                              2、在配置文件中添加context:annotation-config标签

                                  <context:annotation-config/>

                            这个配置隐式注册了多个对注释进行解析处理的处理器

                           AutowiredAnnotationBeanPostProcessor,CommonAnnotationBeanPostProcessor,

                           PersistenceAnnotationBeanPostProcessor,RequiredAnnotationBeanPostProcessor

                                  注: @Resource注解在spring安装目录的lib\j2ee\common-annotations.jar

                     在java代码中使用@Autowired或@Resource注解方式进行装配,这两个注解的区别是:@Autowired 默认按类型装配,

@Resource默认按名称装配,当找不到与名称匹配的bean才会按类型装配。

                                                              @Autowired

                                       privatePersonDao  personDao;//用于字段上

                                     @Autowired

                                       publicvoid setPersonDao(PersonDaopersonDao) { //用于属性的set方法上

                                           this.personDao = personDao;

                                       }

                     @Autowired注解是按类型装配依赖对象,默认情况下它要求依赖对象必须存在,如果允许null值,可以设置它required属性为false。

                                                              @Autowired(required=false)

                                       privatePersonDao  personDao;//用于字段上



                                     @Autowired(request=false)

                                       public voidsetPersonDao(PersonDaopersonDao) {  //用于属性的set方法上

                                           this.personDao = personDao;

                                       }

                     如果我们想使用按名称装配,可以结合@Qualifier注解一起使用。如下:

                           @Autowired@Qualifier("personDao")

                           privatePersonDao  personDao;//用于字段上



                            @Autowired

                            publicvoidsetPersonDao(@Qualifier("personDao") PersonDao personDao) {//用于属性的set方法上

                                 this.personDao= personDao;

                            }

                            @Qualifier注解也能够被指定为构造器的参数或者方法的参数:

      @Resource注解和@Autowired一样,也可以标注在字段或属性的setter方法上.

      @Resource注解默认按名称装配。

      名称可以通过@Resource的name属性指定,如果没有指定name属性,

      当注解标注在字段上,即默认取字段的名称作为bean名称寻找依赖对象

      当注解标注在属性的setter方法上,即默认取属性名作为bean名称寻找依赖对象。

                          @Resource(name="personDao")

                            privatePersonDaopersonDao;//用于字段上

                            @Resource(name="personDao")

                            publicvoidsetPersonDao(PersonDao personDao) {//用于属性的set方法上

                                  this.personDao = personDao;

                            }

                            后一种相当于xml配置文件中的

                             <propertyname=“personDao"ref="personDao" />

      注意:如果没有指定name属性,并且按照默认的名称找不到依赖对象时, @Resource注解会回退到按类型装配。但一旦指定了name属性,就只能按名称装配了。







2.自动装配依赖对象

              对于自动装配,大家了解一下就可以了,实在不推荐大家使用。例子:

                           <beanid=“foo”class=“...Foo” autowire=“autowire type”>

                             autowire属性取值如下



                            *  byType:按类型装配,可以根据属性的类型,在容器中寻找跟该类型匹配的bean。如果发现多个,那么将会抛出异常。如果没有找到,即属性值为null。



                             * byName:按名称装配,可以根据属性的名称,在容器中寻找跟该属性名相同的bean,如果没有找到,即属性值为null。



                            *constructor与byType的方式类似,不同之处在于它应用于构造器参数。如果在容器中没有找到与构造器参数类型一致的bean,那么将会抛出异常。



                            *autodetect :首先尝试使用constructor来自动装配,然后使用byType方式。不确定性的处理与constructor方式和byType方式一致。

              通过在classpath自动扫描方式把组件纳入spring容器中管理

              前面的例子我们都是使用XML的bean定义来配置组件。在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找及维护起来也不太方便。



              spring2.5为我们引入了组件自动扫描机制,它可以在类路径底下寻找标注了@Component、@Service、@Controller、@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件是一样的。

              要使用自动扫描机制,我们需要打开以下配置信息:

              1、引入context命名空间 需要在xml配置文件中配置以下信息:

             <beansxmlns="http://www.springframework.org/schema/beans"

                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

                    xmlns:context="http://www.springframework.org/schema/context"

                   xsi:schemaLocation="http://www.springframework.org/schema/beans

                        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

                       http://www.springframework.org/schema/context

                        http://www.springframework.org/schema/context/spring-context-2.5.xsd">

                        <context:component-scanbase-package="cn.itcast"/>

              </beans>

              2、在配置文件中添加context:component-scan标签

                    <context:component-scanbase-package="cn.itcast"/>

                     其中base-package为需要扫描的包(含子包)。



                                          注:

                                          1、在使用组件扫描元素时,AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor会隐式地被包括进来。 也就是说,连个组件都会被自动检测并织入 - 所有这一切都不需要在XML中提供任何bean配置元数据。



                                          2、功能介绍

                                          @Service用于标注业务层组件、

                                         @Controller用于标注控制层组件(如struts中的action)、

                                         @Repository用于标注数据访问组件,即DAO组件。

                                          而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。

                                          //Dao层

                           importorg.springframework.stereotype.Repository;

                           importcom.test.dao.PersonDao;

                            @Repository("personDao")

                            publicclassPersonDaoBean implements PersonDao {

                            }



                            //业务层

                           importjavax.annotation.Resource;

                            importorg.springframework.stereotype.Service;

                           importcom.test.dao.PersonDao;

                           importcom.test.service.PersonService;

                           @Service("personService")

                            publicclassPersonServiceBean implements PersonService {

                                 @Resource(name="personDao")

                                  privatePersonDao personDao;

                            }
分享到:
评论

相关推荐

    Spring 注解 小例子

    Spring注解的主要目的是消除XML配置文件,使开发者能够通过在类或方法上直接添加注解来声明对象及其依赖关系。这个小例子将深入探讨Spring框架中的主要注解及其用法。 1. `@Component`、`@Service`、`@Repository` ...

    Spring注解注入属性

    ### Spring注解注入属性 #### 一、传统方式与注解方式对比 在Spring框架中,依赖注入(DI)是一种核心的设计模式,用于促进松耦合的系统设计,使得组件之间的依赖关系可以在运行时动态地建立,而不是在编译时硬...

    spring注解 -----最简单的注解与自动装配例子

    总的来说,Spring注解极大地简化了Spring应用的配置,使得开发者可以更加专注于业务逻辑,而不是繁琐的XML配置。通过合理使用@Autowired、@ComponentScan等注解,我们可以构建出松散耦合、易于维护的系统。在实践中...

    hibernate+spring注解例子

    这个"hibernate+spring注解例子"项目提供了一个实际的登录场景,帮助学习者更好地理解和运用这两个框架的注解特性。通过深入学习和实践,开发者能够提高开发效率,降低出错概率,为构建高效、稳定的Java应用程序打下...

    最简单的一个spring注解实例

    本实例将深入探讨Spring中的注解使用,特别是如何创建一个最简单的Spring注解实例。 首先,我们需要了解Spring的核心组件——Spring容器,也称为ApplicationContext。这个容器负责管理应用程序中的bean,包括它们的...

    Spring 注解 方式配制的小demo

    尽管我们无法直接访问这个链接,但我们可以基于常见的Spring注解配置实践来解释相关概念。 1. `@Component`:这是Spring中的基础注解,用于标记一个类为Spring管理的bean。它的子注解包括`@Service`、`@Repository`...

    dwr+spring 注解方式

    1. **Spring注解配置**: - `@Configuration`:标记一个类为Spring配置类,可替代传统的XML配置。 - `@ComponentScan`:用于扫描指定包下的所有@Component及其子注解(如@Service、@Repository、@Controller)的类...

    Spring注解驱动开发.pdf

    ### Spring注解驱动开发知识点详解 #### 一、Spring注解驱动概述 Spring框架通过引入注解支持,极大地简化了Java EE应用的开发工作。它不仅提供了基础的依赖注入功能,还增强了对组件扫描的支持,使得开发者能够...

    Spring 注解.xmind

    Spring注解大全,注解整理方式采用思维导图工具(XMind)整理,对注解按自己的方式进行了分类,并对所有的注解在备注中进行了解释说明;

    我的博客spring注解概述的示例代码

    在这个"我的博客spring注解概述的示例代码"资源中,我们可能找到如何使用`@Autowired`来自动装配bean的实例。 首先,让我们了解什么是依赖注入。在面向对象编程中,一个类往往依赖于其他类来完成特定任务。依赖注入...

    Spring 注解学习手札(一) 构建简单Web应用

    在本篇《Spring注解学习手札(一)构建简单Web应用》中,我们将深入探讨如何使用Spring框架的注解来构建一个基本的Web应用程序。Spring框架是Java开发中的核心工具,尤其在企业级应用中广泛应用。它简化了依赖注入、...

    spring注解笔记

    ### Spring注解知识点详解 #### 1. Spring注解基础 在Spring框架中,注解是一种轻量级的依赖注入方式,能够简化配置并提高开发效率。在本节中,我们主要介绍几个Spring中常用的注解,它们分别是@Component、@...

    Spring 注解 入门

    Spring注解是Spring框架中的一个重要特性,它极大地简化了配置,提高了代码的可读性和可维护性。在本文中,我们将深入探讨如何使用Spring注解进行属性注入,并重点关注`@Autowired`和`@Qualifier`这两个关键注解。 ...

    spring注解

    spring注解详细

    Spring注解依赖包

    Spring注解所依赖的包。com.springSource.javax.annotation

    dubbo+zookeeper+spring 注解式开发demo

    例如,使用`@Component`、`@Autowired`等Spring注解,可以将服务提供者和消费者对象注入到其他业务逻辑组件中。此外,Spring的AOP(面向切面编程)能力也能帮助我们更好地实现服务的监控和日志记录。 在这个demo中...

    Spring注解驱动笔记.md

    Spring注解描述,底层笔记

    Spring注解驱动开发

    《Spring注解驱动开发》是一套帮助我们深入了解Spring原理机制的教程; 现今SpringBoot、SpringCloud技术非常火热,作为Spring之上的框架,他们大量使用到了Spring的一些底层注解、原理,比如@Conditional、@Import...

    Spring注解驱动开发.xmind

    Spring注解驱动开发.xmind

Global site tag (gtag.js) - Google Analytics