Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
834 views
in Technique[技术] by (71.8m points)

importing AWS secret values to spring project overrides properties files

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...