英文:
Spring Cloud how to exclude BootstrapConfiguration
问题
有没有一种方法可以通过org.springframework.cloud.bootstrap.BootstrapConfiguration键在META-INF/spring.factories文件中排除特定的BootstrapConfiguration声明?
我没有找到任何关于这方面的文档,尽管我看到org.springframework.cloud.bootstrap.BootstrapConfiguration注解有一个exclude字段,但对于如何使用它,我不太清楚。
英文:
Is there a way to exclude a specific BootstrapConfiguration declared in a META-INF/spring.factories file with the org.springframework.cloud.bootstrap.BootstrapConfiguration key?
I wasn't able to find any documentation about it, even though I see the org.springframework.cloud.bootstrap.BootstrapConfiguration annotation has an exclude field, it is not clear to me exactly how it should be used.
答案1
得分: 1
根据您想要排除的类别,您可以设置以下内容以进行禁用:
spring.cloud.azure.appconfiguration.enabled=false
英文:
According to the class you want to exclude you can set the following to disable it
spring.cloud.azure.appconfiguration.enabled=false
答案2
得分: 0
这在Spring Boot中很简单。如果你的应用程序文件位置是 "/src/main/resources/bootstrap.yml",那么它会在应用程序启动时自动执行。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论