“Свойства весеннего DB” Ответ

Свойства весеннего DB

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

Свойства весеннего 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

Ответы похожие на “Свойства весеннего DB”

Вопросы похожие на “Свойства весеннего DB”

Больше похожих ответов на “Свойства весеннего DB” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования