0

我有一个弹簧启动应用程序:

@Configuration
@SpringBootApplication
@EnableAutoConfiguration
@EnableConfigServer
public class ConfigServerApplication {

    public static void main(String[] args) {
        SpringApplication.run(ConfigServerApplication.class, args);
    }
}

我有这个bootstrap.propertiesencrypt.key=very-secret-encrypt-key

我可以使用 Hashicorp Vaultencrypt.key在启动配置服务器应用程序时从中获取此值吗?

4

0 回答 0