“Wiosenne właściwości DB” Kod odpowiedzi

Wiosenne właściwości DB

spring:
    profiles: local
    datasource:
        url: jdbc:postgresql://localhost:5432/postgres
        username: postgres
        password: root
code swifter

Wiosenne właściwości DB


@Configuration   
public class ConfigurationPropertySource {

private ConfigurableEnvironment env;

private final ConfigurationRepository configurationRepository;

    @Autowired
    public ConfigurationPropertySource(ConfigurationRepository configurationRepository) {
        this.configurationRepository = configurationRepository;
    }

    @Autowired
    public void setConfigurableEnvironment(ConfigurableEnvironment env) {

        this.env = env;
   }

   @PostConstruct
   public void init() {
    MutablePropertySources propertySources = env.getPropertySources();
       Map myMap = new HashMap();
       //from configurationRepository get values and fill mapp
       propertySources.addFirst(new MapPropertySource("MY_MAP", myMap));
   }

}

Successful Sloth

Odpowiedzi podobne do “Wiosenne właściwości DB”

Pytania podobne do “Wiosenne właściwości DB”

Więcej pokrewnych odpowiedzi na “Wiosenne właściwości DB” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu