“Feder -DB -Eigenschaften” Code-Antworten

Feder -DB -Eigenschaften

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

Feder -DB -Eigenschaften


@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

Ähnliche Antworten wie “Feder -DB -Eigenschaften”

Fragen ähnlich wie “Feder -DB -Eigenschaften”

Weitere verwandte Antworten zu “Feder -DB -Eigenschaften” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen