Spring 读取配置文件的俩种方式
Posted 彭玉松
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 读取配置文件的俩种方式相关的知识,希望对你有一定的参考价值。
读取配置可通过 org.springframework.core.env.Environment 类来获取, 也可以通过@Value的方式来获取
注解形式:
@PropertySource({"classpath:application.properties"})
配置文件形式:
<context:property-placeholder location="classpath:jdbc.properties" file-encoding="utf-8" ignore-unresolvable="true" />
以上是关于Spring 读取配置文件的俩种方式的主要内容,如果未能解决你的问题,请参考以下文章