• Spring IOC的注入方式


    Spring IOC注入的方法主要有两种

    1:设值注入

    2:构造注入

    简单来说一个是调用set方法设值,一个是通过构造函数设值

    Spring-ioc.xml

    <?xml version= "1.0" encoding= "UTF-8"?>
    <beans xmlns= "http://www.springframework.org/schema/beans"
    xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation= "http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd"
    default-init-method= "init" default-destroy-method= "destroy">
    <!--  
    <bean id="InjectionService" class="Main.InjectionServiceImpl">
    <property name="injectionDAO" ref="InjectionDAO"></property>
     </bean>
     -->
     <bean id="InjectionService" class="Main.InjectionServiceImpl">
    <constructor-arg name="injectionDAO" ref="InjectionDAO"></constructor-arg>
     </bean>
    <bean id="InjectionDAO" class= "Main.InjectionDAOImpl"> </bean>
    
    </beans>

  • 相关阅读:
    HTML-图片和多媒体
    HTML弹性布局
    HTML定位——绝对定位和相对定位、固定定位
    HTML定位和布局----float浮动
    CSS层叠
    HTML-css样式引用方式
    认识HTML和CSS
    原生js 进度条
    原生js文字滚动 滚动条
    时间轴
  • 原文地址:https://www.cnblogs.com/wjune-0405/p/12148750.html
Copyright © 2020-2023  润新知