4 Haziran 2018 Pazartesi

SpringContext @PropertySources Anotasyonu - Farklı Bir Properties Dosyası Okuma

Giriş
@PropertySource dizisi tanımlamak içindir.

Örnek
Şöyle yaparız.
@SpringBootApplication
@PropertySources({ 
    @PropertySource(value = { "classpath:internal.properties" }),
    @PropertySource(value = { "file:${application.properties}" }) })
public class MyApplication implements CommandLineRunner {...}

Hiç yorum yok:

Yorum Gönder