码迷,mamicode.com
首页 > 编程语言 > 详细

Spring_04_XML配置

时间:2021-05-24 03:07:02      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:创建对象   imp   xml配置   sqli   ref   需要   mysqli   com   对象   

XML配置

  * beans.xml 配置class
    
      <!--
          使用Spring来创建对象,在Spring中这些都称为Bean

          Bean=对象
          Hello hello = new Hello();
          id=变量名
          class=new的对象
          property相当于对象的属性,给属性设置值

      -->


    <bean id="userImpl" class="com.shi.dao.UserDaoImpl"/>

    <bean id="mysqlImpl" class="com.shi.dao.UserDaoMysqlImpl"/>

    <bean id="oracleImpl" class="com.shi.dao.UserDaoOracleImpl"/>

    <bean id="userServiceImpl" class="com.shi.service.UserServiceImpl">  
      <property name="userDao" ref="oracleImpl"/>  //需要使用上面bean中的哪种实现就是这里填写哪个实现,通过service类的中属性的set方法进行依赖注入。
    </bean>

Spring_04_XML配置

标签:创建对象   imp   xml配置   sqli   ref   需要   mysqli   com   对象   

原文地址:https://www.cnblogs.com/szqengr/p/14747720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!