場景:在項目部署的過程當中,對於spring boot的配置文件一直不很瞭解,直到項目出現一個莫名其妙的問題——工程classes中的配置文件被覆蓋,程序啓動老是報錯!html
application.properties你們都不陌生,咱們在開發的時候,常常使用它來配置一些能夠手動修改並且不用編譯的變量,這樣的做用在於,打成war包或者jar用於生產環境時,咱們能夠手動修改環境變量而不用再從新編譯。java
spring boo默認已經配置了不少環境變量,例如,tomcat的默認端口是8080,項目的contextpath是「/」等等,能夠在這裏看spring boot默認的配置信息http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-external-configspring
System.getProperties()
)@PropertySource
annotations on your @Configuration
classes.SpringApplication.setDefaultProperties
)除了在application.properties
配置參數,還有多種方式能夠設定參數。Spring Boot 按照下面的順序查找配置項:json
spring boot容許你自定義一個application.properties文件,而後放在如下的地方,來重寫spring boot的環境變量或者定義你本身環境變量tomcat
Spring Boot 默認從4個位置查找application.properties文件。markdown
說明:當前目錄
指的是運行Jar文件時的目錄,不必定是jar文件所在目錄,全部上面前2項是Jar包外目錄。app
若是同時在四個地方都有配置文件,配置文件的優先級是從1到4。less
根據xxxApplicationStarter能夠定位到當前目錄。而後根據須要配置配置文件。dom
也就是classes目錄。spring-boot
參考文章http://www.nathanyan.com/2016/01/25/Spring-Boot-04-%E9%85%8D%E7%BD%AE%E7%9B%B8%E5%85%B3/
使用配置文件以後,spring boo啓動時,會自動把配置信息讀取到spring容器中,並覆蓋spring boot的默認配置,那麼,咱們怎麼來讀取和設置這些配置信息呢
1.經過命令行來重寫和配置環境變量,優先級最高,例如能夠經過下面的命令來重寫spring boot 內嵌tomcat的服務端口,注意「=」倆邊不要有空格
java -jar demo.jar --server.port=9000
若是想要設置多個變量怎麼辦,能夠已json的格式字符串來設置
java -jar demo.jar --spring.application.json='{"foo":"bar"}'
2.經過@value註解來讀取
@RestController @RequestMapping("/task") public class TaskController { @Value("${connection.remoteAddress}") private String address; @RequestMapping(value = {"/",""}) public String hellTask(@Value("${connection.username}")String name){ return "hello task !!"; } }
3.經過Environment接口來獲取,只須要把接口注進去便可
@RestController @RequestMapping("/task") public class TaskController { @Autowired Environment ev ; @Value("${connection.remoteAddress}") private String address; @RequestMapping(value = {"/",""}) public String hellTask(@Value("${connection.username}")String name){ String password = ev.getProperty("connection.password"); return "hello task !!"; } }
4.能夠自定義一個工具類,來獲取,這種方式關鍵在於讀取配置文件信息,適合自定義的配置信息,spring 容器默認的配置信息會讀不到
@Component public class SystemConfig { private static Properties props ; public SystemConfig(){ try { Resource resource = new ClassPathResource("/application.properties");// props = PropertiesLoaderUtils.loadProperties(resource); } catch (IOException e) { e.printStackTrace(); } } /** * 獲取屬性 * @param key * @return */ public static String getProperty(String key){ return props == null ? null : props.getProperty(key); } /** * 獲取屬性 * @param key 屬性key * @param defaultValue 屬性value * @return */ public static String getProperty(String key,String defaultValue){ return props == null ? null : props.getProperty(key, defaultValue); } /** * 獲取properyies屬性 * @return */ public static Properties getProperties(){ return props; } } //用的話,就直接這樣子 String value = SystemConfig.getProperty("key");
5.能夠利用${…}在application.properties引用變量
myapp.name=spring
myapp.desc=${myapp.name} nice
6.能夠在application.properties配置隨機變量,利用的是RandomValuePropertySource類
my.secret=${random.value} my.number=${random.int} my.bignumber=${random.long} my.number.less.than.ten=${random.int(10)} my.number.in.range=${random.int[1024,65536]}
7.綁定屬性值到Bean
properties
文件在面對有層次關係的數據時,就有點不合適。YAML 支持一種相似JSON的格式,能夠表現具備層次的數據。詳細說明看這裏.
YAML的內容會轉換爲properties格式,以下:
environments: dev: url: http://dev.bar.com name: Developer Setup prod: url: http://foo.bar.com name: My Cool App my: servers: - dev.bar.com - foo.bar.com
environments.dev.url=http://dev.bar.com environments.dev.name=Developer Setup environments.prod.url=http://foo.bar.com environments.prod.name=My Cool App my.servers[0]=dev.bar.com my.servers[1]=foo.bar.com
能夠用@Value("${environments.dev.url}")
注入.
YAML的一個特性就是能夠把多個文件的配置項,合併到一個文件裏。用---
分隔。
server: address: 192.168.1.100 --- spring: profiles: development server: address: 127.0.0.1 --- spring: profiles: production server: address: 192.168.1.120
再結合spring.profiles
能夠指定Profile下使用哪一個配置項.
Spring Boot 也支持Profile特性,Profile相關的配置文件命名爲:application-{profile}.properties
,能夠用spring.profiles.active激活Profile:
java -jar target/demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=test
雖然能夠經過@Value("${property}")
注入屬性值,若是有多項須要注入,就有點麻煩了。@ConfigurationProperties
能夠直接把多個屬性值綁定到Bean上。
配置文件:
# application.yml
connection:
username: admin
remoteAddress: 192.168.1.1
使用:
@Component @ConfigurationProperties(prefix="connection") public class ConnectionSettings { private String username; private InetAddress remoteAddress; // ... getters and setters }
也能夠在建立Bean時注入:
@ConfigurationProperties(prefix = "foo") @Bean public FooComponent fooComponent() { ... }
3