我有一个弹簧启动应用程序:
@Configuration
@SpringBootApplication
@EnableAutoConfiguration
@EnableConfigServer
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
我有这个bootstrap.properties
:
encrypt.key=very-secret-encrypt-key
我可以使用 Hashicorp Vaultencrypt.key
在启动配置服务器应用程序时从中获取此值吗?