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

Java+Spring+Bean+注入方式

时间:2018-08-23 00:17:06      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:beans   ret   class   utf-8   配置   ace   private   override   his   

1、首先准备共享文件
调用方法Client端Client.java:

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args) {
        //创建容器
        ClassPathXmlApplicationContext cac = new ClassPathXmlApplicationContext("service.xml");
        //获取bean对象
        CustomerServiceImpl cs = (CustomerServiceImpl) cac.getBean("CustomerServiceImpl");
        //调用方法
        cs.saveCustomer();
    }
}

接口文件CustomerService.java:

public interface CustomerService {
    void saveCustomer();
}

2、构造函数方式注入:
Spring配置文件,Service.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">

    <bean id="CustomerServiceImpl" class="CustomerServiceImpl">
        <constructor-arg name="name" value="zhangsan"></constructor-arg>
        <constructor-arg name="age" value="3"></constructor-arg>
    </bean>

</beans>

注入bean类文件:CustomerServiceImpl.java

public class CustomerServiceImpl implements CustomerService {
    private String name ;
    private Integer age;

    public CustomerServiceImpl(String name, Integer age) {
        this.name = name;
        this.age = age;
    }

    @Override
    public void saveCustomer() {
        System.out.println("CustomerServiceImpl-saveCustomer-" + name + "-" + age);
    }
}

3、set方法注入
Spring配置文件,Service.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">

<bean id="CustomerServiceImpl" class="CustomerServiceImpl">
    <property name="name" value="李四"></property>
    <property name="age" value="10"></property>
</bean>

</beans>

注入bean类文件:CustomerServiceImpl.java:

public class CustomerServiceImpl implements CustomerService {
    private String name ;
    private Integer age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    @Override
    public void saveCustomer() {
        System.out.println("CustomerServiceImpl-saveCustomer-" + name + "-" + age);
    }
}

Java+Spring+Bean+注入方式

标签:beans   ret   class   utf-8   配置   ace   private   override   his   

原文地址:http://blog.51cto.com/janephp/2163050

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