中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot中的Properties的使用詳解

發布時間:2020-09-22 21:16:08 來源:腳本之家 閱讀:216 作者:flydean 欄目:編程語言

簡介

本文我們將會討怎么在Spring Boot中使用Properties。使用Properties有兩種方式,一種是java代碼的注解,一種是xml文件的配置。本文將會主要關注java代碼的注解。

使用注解注冊一個Properties文件

注冊Properties文件我們可以使用@PropertySource 注解,該注解需要配合@Configuration 一起使用。

@Configuration
@PropertySource("classpath:foo.properties")
public class PropertiesWithJavaConfig {
  //...
}

我們也可以使用placeholder來動態選擇屬性文件:

@PropertySource({ 
 "classpath:persistence-${envTarget:mysql}.properties"
})
@PropertySource也可以多次使用來定義多個屬性文件:

@PropertySource("classpath:foo.properties")
@PropertySource("classpath:bar.properties")
public class PropertiesWithJavaConfig {
  //...
}

我們也可以使用@PropertySources來包含多個@PropertySource:

@PropertySources({
  @PropertySource("classpath:foo.properties"),
  @PropertySource("classpath:bar.properties")
})
public class PropertiesWithJavaConfig {
  //...
}

使用屬性文件

最簡單直接的使用辦法就是使用@Value注解:

@Value( "${jdbc.url}" )
private String jdbcUrl;

我們也可以給屬性添加默認值:

@Value( "${jdbc.url:aDefaultUrl}" )
private String jdbcUrl;

如果要在代碼中使用屬性值,我們可以從Environment API中獲取:

@Autowired
private Environment env;
...
dataSource.setUrl(env.getProperty("jdbc.url"));

Spring Boot中的屬性文件

默認情況下Spring Boot 會讀取application.properties文件作為默認的屬性文件。當然,我們也可以在命令行提供一個不同的屬性文件:

java -jar app.jar --spring.config.location=classpath:/another-location.properties

如果是在測試環境中,我們可以使用@TestPropertySource 來指定測試的屬性文件:

@RunWith(SpringRunner.class)
@TestPropertySource("/foo.properties")
public class FilePropertyInjectionUnitTest {
 
  @Value("${foo}")
  private String foo;
 
  @Test
  public void whenFilePropertyProvided_thenProperlyInjected() {
    assertThat(foo).isEqualTo("bar");
  }
}

除了屬性文件,我們也可以直接以key=value的形式:

@RunWith(SpringRunner.class)
@TestPropertySource(properties = {"foo=bar"})
public class PropertyInjectionUnitTest {
 
  @Value("${foo}")
  private String foo;
 
  @Test
  public void whenPropertyProvided_thenProperlyInjected() {
    assertThat(foo).isEqualTo("bar");
  }
}

使用@SpringBootTest,我們也可以使用類似的功能:

@RunWith(SpringRunner.class)
@SpringBootTest(properties = {"foo=bar"}, classes = SpringBootPropertiesTestApplication.class)
public class SpringBootPropertyInjectionIntegrationTest {
 
  @Value("${foo}")
  private String foo;
 
  @Test
  public void whenSpringBootPropertyProvided_thenProperlyInjected() {
    assertThat(foo).isEqualTo("bar");
  }
}

@ConfigurationProperties

如果我們有一組屬性,想將這些屬性封裝成一個bean,則可以考慮使用@ConfigurationProperties。

@ConfigurationProperties(prefix = "database")
public class Database {
  String url;
  String username;
  String password;
 
  // standard getters and setters
}

屬性文件如下:

database.url=jdbc:postgresql:/localhost:5432/instance
database.username=foo
database.password=bar

Spring Boot將會自動將這些屬性文件映射成java bean的屬性,我們需要做的就是定義好prefix。

yaml文件

Spring Boot也支持yaml形式的文件,yaml對于層級屬性來說更加友好和方便,我們可以看下properties文件和yaml文件的對比:

database.url=jdbc:postgresql:/localhost:5432/instance
database.username=foo
database.password=bar
secret: foo
database:
 url: jdbc:postgresql:/localhost:5432/instance
 username: foo
 password: bar
secret: foo

注意yaml文件不能用在@PropertySource中。如果你使用@PropertySource,則必須指定properties文件。

Properties環境變量

我們可以這樣傳入property環境變量:

java -jar app.jar --property="value"

~~shell

java -Dproperty.name="value" -jar app.jar

或者這樣:
export name=value
java -jar app.jar

環境變量有什么用呢? 當指定了特定的環境變量時候,Spring Boot會自動去加載application-environment.properties文件,Spring Boot默認的屬性文件也會被加載,只不過優先級比較低。

## java代碼配置

除了注解和默認的屬性文件,java也可以使用PropertySourcesPlaceholderConfigurer來在代碼中顯示加載:

@Bean
public static PropertySourcesPlaceholderConfigurer properties(){

PropertySourcesPlaceholderConfigurer pspc
 = new PropertySourcesPlaceholderConfigurer();
Resource[] resources = new ClassPathResource[ ]
 { new ClassPathResource( "foo.properties" ) };
pspc.setLocations( resources );
pspc.setIgnoreUnresolvablePlaceholders( true );
return pspc;
}

本文的例子可以參考:https://github.com/ddean2009/learn-springboot2/tree/master/springboot-properties](https://github.com/ddean2009/learn-springboot2/tree/master/springboot-properties

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蓬溪县| 中方县| 西安市| 青冈县| 海宁市| 耿马| 临桂县| 霍林郭勒市| 江北区| 平邑县| 万山特区| 应城市| 石家庄市| 紫云| 古田县| 皋兰县| 阿城市| 措美县| 怀来县| 鄂托克前旗| 富顺县| 安多县| 田阳县| 永胜县| 炉霍县| 揭西县| 黑水县| 屏南县| 新竹市| 渭源县| 林州市| 怀来县| 东方市| 普兰店市| 固阳县| 东兴市| 项城市| 汉川市| 巩义市| 浪卡子县| 永嘉县|