首页 > 解决方案 > 如何为开发属性禁用 spring-cloud 配置服务器

问题描述

我在我的 spring 应用程序中集成了 spring cloud。它工作正常。但我有 3 个属性文件: application.properties

server.port 9101

spring.profiles.active=@env@
logging.level.org.springframework.data=debug
logging.level.=error

应用程序-dev.properties

spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true 
spring.jpa.hibernate.use-new-id-generator-mappings=true

logging.level.org.hibernate.SQL=DEBUG
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE

#TRACE DEBUG or INFO
logging.level.org.hibernate.type=INFO
spring.application.name=microservice-payment
spring.cloud.config.enabled = false

spring.jpa.properties.hibernate.type=trace 
spring.datasource.url=jdbc:postgresql://localhost:5432/gara-mpayment
spring.datasource.username=garauser
spring.datasource.password=garauser
spring.jpa.hibernate.ddl-auto=update
spring.datasource.driver-class-name=org.postgresql.Driver
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
spring.datasource.initialization-mode=always
server.servlet.session.timeout=10s


#RabbitMq configuration
rabbitmq.queueName=mpayment.queue
rabbitmq.exchangeName=mpayment-exchange
rabbitmq.routingKey=mpayment.routingkey

和 applictaion-int.properties

spring.cloud.config.server.git.uri=my-url
spring.cloud.config.server.git.username=username
spring.cloud.config.server.git.password=pwd

我可以为开发配置文件禁用 spring cloud 以使用 application-dev.properties 的本地内容并仅为 applictaion-int.properties 激活吗?

我试过spring.cloud.config.enabled=false spring.cloud.bootstrap.enabled=false没有成功。

标签: springspring-bootspring-cloud

解决方案


您应该制作一个 bootstrap.yml 或属性文件并添加spring.cloud.config.enable=false

或设置环境变量并禁用spring cloud

https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html

有关您提到的错误,请参阅上面的链接Invalid config server configuration. Action: If you are using the git profile, you need to set a Git URI in your configuration. If you are using a native profile and have spring.cloud.config.server.bootstrap=true, you need to use a composite configuration


推荐阅读