Skip to content

Instantly share code, notes, and snippets.

@aliencode
Last active December 20, 2015 02:49
Show Gist options
  • Select an option

  • Save aliencode/6059598 to your computer and use it in GitHub Desktop.

Select an option

Save aliencode/6059598 to your computer and use it in GitHub Desktop.
读取Properties配置文件值
<!-- 引用 -->
<context:property-placeholder ignore-resource-not-found="true"
location="classpath*:/application.properties,classpath*:/application.development.properties"/>
@Value( "${jdbc.url}" )
private String jdbcUrl;
//spring property placeholders 使用: ${key:defaultValue}
//或
@Autowired
private Environment env;
...
env.getProperty("jdbc.url");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment