Spring boot 读取 application.properties 文件方法

Posted lpq22221314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 读取 application.properties 文件方法相关的知识,希望对你有一定的参考价值。

首先在配置文件application.properties定义如下内容:

aaa=123

然后在控制器中编写:(只能在控制器中才能自动注入)

 

定义 @Autowired即可自动注入  Enviroment ,然后用 env.getProperty("参数名") 即可获取任意的配置参数。

 

以上是关于Spring boot 读取 application.properties 文件方法的主要内容,如果未能解决你的问题,请参考以下文章

停止许多特定的 Spring Boot 应用程序

在内存数据库中使用 Spring Boot 测试

不能在 Spring Boot 2(版本 2.0.0.M7)中包含 Prometheus 指标

在eclipse中将Spring Boot应用程序导出为JAR文件

如何在 Spring Boot 的 application.yml 中配置滚动文件附加程序

Spring Boot参考教程Spring Boot Jar方式读取资源文件