Spring4 从配置文件中获取配置信息

从Spring4 从配置文件中获取配置信息


1、新建配置config.properties文件里面添加 

USERNAME=admin
PASSWORD=admin

2、在springmvc.xml文件里面
<beans
xmlns: util ="http://www.springframework.org/schema/util"
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util.xsd">

<util:properties id="CONFIG" location="classpath:config.properties"/>

3 在Java文件中比如demo.java

private @Value("#{CONFIG['USERNAME']}") String username;
private @Value("#{CONFIG['PASSWORD']}") String password;

这样就可以直接可以用了。

 
  


你可能感兴趣的:(spring4)