七、实现依赖注入的多种方式

四、不同数据类型的注入方式

七、实现依赖注入的多种方式_第1张图片
image.png

注:
1、bean属性是在所有的spring配置文件中寻找当前属性,local是在我们的当前配合文件中寻找当前属性元素。

示例

注:
1、当有特殊字符时,比如“P&G”,这时候如果输出的话会报错,因为G是类似于关键字的一个存在。这时候可以使用CDATA元素来解决这个问题,也可以将特殊字符转换为实体引用来解决。
2、props集合这种类型的数据是配合我们的properties文件来使用的,比如我们之前学习的JDBC的时候使用的配置文件。

实体类:

package entity;

import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

public class TestEntity {
    private String specialCharacter1; // 特殊字符值1
    private String specialCharacter2; // 特殊字符值2
    private User innerBean; // JavaBean类型
    private List list; // List类型
    private String[] array; // 数组类型
    private Set set; // Set类型
    private Map map; // Map类型
    private Properties props; // Properties类型
    private String emptyValue; // 注入空字符串值
    private String nullValue = "init value"; // 注入null值

    public void setSpecialCharacter1(String specialCharacter1) {
        this.specialCharacter1 = specialCharacter1;
    }

    public void setSpecialCharacter2(String specialCharacter2) {
        this.specialCharacter2 = specialCharacter2;
    }

    public void setInnerBean(User user) {
        this.innerBean = user;
    }

    public void setList(List list) {
        this.list = list;
    }
    
    public void setArray(String[] array) {
        this.array = array;
    }

    public void setSet(Set set) {
        this.set = set;
    }

    public void setMap(Map map) {
        this.map = map;
    }

    public void setProps(Properties props) {
        this.props = props;
    }

    public void setEmptyValue(String emptyValue) {
        this.emptyValue = emptyValue;
    }

    public void setNullValue(String nullValue) {
        this.nullValue = nullValue;
    }

    public void showValue() {
        System.out.println("特殊字符1:" + this.specialCharacter1);
        System.out.println("特殊字符2:" + this.specialCharacter2);
        System.out.println("内部Bean:" + this.innerBean.getUsername());
        System.out.println("List属性:" + this.list);
        System.out.println("数组属性[0]:" + this.array[0]);
        System.out.println("Set属性:" + this.set);
        System.out.println("Map属性:" + this.map);
        System.out.println("Properties属性:" + this.props);
        System.out.println("注入空字符串:[" + this.emptyValue + "]");
        System.out.println("注入null值:" + this.nullValue);
    }
}
package entity;

/**
 * 用户实体类
 */
public class User implements java.io.Serializable {
    private String username; // 用户名

    // getter & setter
    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

}

配置文件:



    
        
        
        
            
        
        
        
        
            P&G
        
        
        
            
                
                    张三
                
            
        
        
        
        
            
                足球
                篮球
            
        
        
        
        
            
                足球
                篮球
            
        
        
        
        
            
                足球
                篮球
            
        
        
        
        
            
                
                    football
                    足球
                
                
                    basketball
                    篮球
                
            
        
        
        
        
            
                足球
                篮球
            
        
        
        
        
            
        
        
        
        
            
        
    
    
    
    
    
    
    
    

测试类代码:

package test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import entity.TestEntity;

public class Test {

    @org.junit.Test
    public void test() {
        // 使用ApplicationContext接口的实现类ClassPathXmlApplicationContext加载Spring配置文件
        ApplicationContext ctx = new ClassPathXmlApplicationContext(
                "applicationContext.xml");
        TestEntity entity = (TestEntity) ctx.getBean("testEntity");
        entity.showValue();
    }

}

运行结果:


七、实现依赖注入的多种方式_第2张图片
image.png

五、小结

七、实现依赖注入的多种方式_第3张图片
image.png

你可能感兴趣的:(七、实现依赖注入的多种方式)