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

Spring根据XML配置文件注入对象类型属性

时间:2017-11-13 13:52:59      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:log   dao   方法   div   print   style   this   out   通过   

这里有dao、service和Servlet三个地方

通过配过文件xml生成对象,并注入对象类型的属性,降低耦合

dao文件代码:

package com.swift;

public class DaoUser {
    public void fun() {
        System.out.println("I‘m  dao‘s fun()....................");
    }
}

service文件代码:(提供setter方法,xml文件可通过这种方法配置)

package com.swift;

public class ServiceUser {
    private DaoUser dao;
    
    public void setDao(DaoUser dao) {
        this.dao = dao;
    }

    public void fun() {
        System.out.println("I am Service‘s fun()..............");
        this.dao.fun();
    }
}

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">
<!-- IoC 控制反转 Spring根据XML配置文件注入对象类型属性 -->
<bean id="dao" class="com.swift.DaoUser"></bean>
<bean id="service" class="com.swift.ServiceUser">
<property name="daoUser" ref="dao"></property>
</bean>
</beans>

Servlet类文件可以绕开dao的文件,直接使用service即可

 

Spring根据XML配置文件注入对象类型属性

标签:log   dao   方法   div   print   style   this   out   通过   

原文地址:http://www.cnblogs.com/qingyundian/p/7825587.html

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