Spring boot 读取 application.properties 文件方法

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

aaa=123

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

Spring boot 读取 application.properties 文件方法

 

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

 

Spring boot 读取 application.properties 文件方法

上一篇:uniapp输入空格


下一篇:uniapp SyntaxError: Unexpected token u in JSON at position 0 解决方案