yml 和 properties 注入属性方式

guns
1.yml 方式
yml 文件guns 下直接写
conversionUrl: http://172.16.10.90/cgi-bin/soapcgi-dir
在需要注入属性的Java文件下直接进行注入
 
     @Value("${guns.conversionUrl}")
     private String ITEM_URL;

2.properties 方式

1、在applicationContext.xml配置文件中,引入命名空间。

xmlns:util="http://www.springframework.org/schema/util"  
    xsi:schemaLocation="  
     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">  

 

2、配置注解组件扫描,用注解来自动注入

 

 

3、在classpath路径下创建属性文件,如sys.properties

test=sysdata  

 

4、 让Spring载入属性文件,在applicationContext.xml 中配置

 

 5、创建java文件,让Spring注入从资源文件中读取到的属性的值,如下

复制代码

@Component  
public class SysConf {  
  
    @Value("#{sys.test}")  
    private String test;  
  
    @Value("#{sys.test}")  
    public void setTest(String test){  
        test = test;  
    }  
  
    @Value("#{sys}")  
    public void setSysConf(Properties sys){  
        test= sys.getProperty("test");  
    }  
}

复制代码

你可能感兴趣的:(yml 和 properties 注入属性方式)