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

Spring 依赖注入

时间:2017-03-23 23:33:18      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:span   oca   xsd   spring   context   ram   ons   tor   create   

首先装配一个实体类People

package com.maya.model;

public class People {
    private int id;
    private String name;
    private int age;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    
    @Override
    public String toString() {
        return "People [id=" + id + ", name=" + name + ", age=" + age + "]";
    }
    public People(int id, String name, int age) {
        super();
        this.id = id;
        this.name = name;
        this.age = age;
    }
    public People() {
        super();
    }
}

配置bean.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="people1" class="com.maya.model.People">
        <property name="id" value="1"></property>
        <property name="name" value="小明"></property>
        <property name="age" value="22"></property>
    </bean>
    
    <!-- 通过构造方法:可以通过属性名、索引、属性类型-->
    <!-- 通过属性名 -->
    <bean id="people2" class="com.maya.model.People">
        <constructor-arg name="id" value="2"></constructor-arg>
        <constructor-arg name="name" value="小明2"></constructor-arg>
        <constructor-arg name="age" value="12"></constructor-arg>
    </bean>
    
    <!-- 通过索引 -->
    <bean id="people3" class="com.maya.model.People">
        <constructor-arg index="0" value="2"></constructor-arg>
        <constructor-arg index="1" value="小明2"></constructor-arg>
        <constructor-arg index="2" value="12"></constructor-arg>
    </bean>
    
    <!-- 通过属性类型 -->
    <bean id="people4" class="com.maya.model.People">
        <constructor-arg type="int" value="2"></constructor-arg>
        <constructor-arg type="String" value="小明2"></constructor-arg>
        <constructor-arg type="int" value="12"></constructor-arg>
    </bean>
  
  
</beans>

读取配置文件

public class Test {
    public static void main(String[] args) {
        ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");//读取配置文件
        People people1=(People)ac.getBean("people1");
        System.out.println(people1);
        
        People people2=(People)ac.getBean("people2");
        System.out.println(people2);
        People people3=(People)ac.getBean("people3");
        System.out.println(people3);
        People people4=(People)ac.getBean("people4");
        System.out.println(people4);
    }
}

 注入静态类与非静态类

public class Factory {
    public People createPeople(){
        People p=new People();
        p.setId(5);
        p.setName("小5");
        p.setAge(55);
        return p;
    }
//静态
public class StaticFactory {
    public static People createPeople(){
        People p=new People();
        p.setId(6);
        p.setName("小6");
        p.setAge(66);
        return p;
    }
<!-- 通过非静态工厂 -->
      <bean id="peopleFactory" class="com.maya.factory.Factory"></bean>    
    <bean id="people5" factory-bean="peopleFactory" factory-method="createPeople"></bean>
      
      <!-- 通过静态工厂 -->
      <bean id="people6" class="com.maya.factory.StaticFactory" factory-method="createPeople"></bean>    
     People people5=(People)ac.getBean("people5");
        System.out.println(people5);
        
        People people6=(People)ac.getBean("people6");
        System.out.println(people6);

 

Spring 依赖注入

标签:span   oca   xsd   spring   context   ram   ons   tor   create   

原文地址:http://www.cnblogs.com/AnswerTheQuestion/p/6607918.html

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