1. 程式人生 > >springboot如何取配置檔案裡的值@value()

springboot如何取配置檔案裡的值@value()

spring boot 中如何取的配置檔案application.properties中值

常用的方法有兩種:

application.properties檔案:

    server.prot:8083

[email protected]()方法獲取

      @Value(value =“${server.port}”)

      private String port;

這個方法個人感覺比較簡單好用

2.Environment獲取

引入Environment,使用其getProperty()方法獲取

String prot = environment.getProperty("server.port");