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 读取配置文件的俩种方式的主要内容,如果未能解决你的问题,请参考以下文章

ajax上传表单的俩种方式

Quaternion控制物体旋转的俩种方式

git 忽略文件的俩种方法及区别

Linux下修改Mysql的用户(root)的密码的俩种方法

读取树莓派4B处理器(CPU)的实时温度

spring boot 读取配置文件的方式