如何禁用 spring-cloud 配置服务器的开发属性

Ted*_*oko 4 spring spring-boot spring-cloud

我将 Spring Cloud 集成到我的 Spring 应用程序中。效果很好。但我有 3 个属性文件: application.properties

server.port 9101

spring.profiles.active=@env@
logging.level.org.springframework.data=debug
logging.level.=error
Run Code Online (Sandbox Code Playgroud)

应用程序-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
Run Code Online (Sandbox Code Playgroud)

和 application-int.properties

spring.cloud.config.server.git.uri=my-url
spring.cloud.config.server.git.username=username
spring.cloud.config.server.git.password=pwd
Run Code Online (Sandbox Code Playgroud)

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

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

小智 6

您应该创建一个 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