Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following issue:

I got AWS secret keys that are being added as MapPropertySource to the ApplicationContext environments.

Also, I have properties files that are loaded using PropertySources annotation.

I want to have the following behaviour: if I have the same key in AWS secret, and properties file - then use the value in the properties file. Right now it's the other way around.

How can I do that?

Code example:

public class AWSSecretsListener implements ApplicationListener<ApplicationPreparedEvent> {

@Override
public void onApplicationEvent(ApplicationPreparedEvent event) {// here I load aws secrets values to the code}

and second file:

@Configuration()
@PropertySources({...})
public class ConfigInitializer { //code logic}
question from:https://stackoverflow.com/questions/65645128/importing-aws-secret-values-to-spring-project-overrides-properties-files

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...