Spring加载Properties配置文件,java通过注解读取数据

 

 1、用法示例: 在springMVC.xml配置文件中添加标签

(推荐用这个,这个用的比较多,也比较简洁)

 加载多个

在Java中使用这个@Value("${ }")注解 读取 properties中的参数

	@Value("${filePath}") 
	private String filePath;
	public void setFilePath(String filePath) {
		System.out.println(filePath);
		this.filePath = filePath;
}

 在其他配置文件中使用 ${ } 读取 properties中的参数


        
            
        
        
        
            ${SMSSCHEDUlERTIME}
        
    

 2.方式是使用注解的方式注入,主要用在java代码中使用注解注入properties文件中相应的value值 ,

   注意:变量不能用static修饰;


 
 	
        
            #{prop.SMSSCHEDUlERTIME}
        
    

 

 

 

你可能感兴趣的:(html,jsp,js,java,javaScript,Jquery)