其他分享
首页 > 其他分享> > 如何将Spring Cloud与Logback集成在一起?

如何将Spring Cloud与Logback集成在一起?

作者:互联网

我有两个Spring Boot应用程序:

>云配置

它具有以下文件结构:

└───src
    └───main
        └───environment
            └───default
                ├───application.yml
                └───bootstrap.yml
...

application.yml:

server:
  port: 8087

spring:
  cloud:
    config:
      server:
        git:
          uri: ssh://path-to-repository.git

bootstrap.yml:

spring:
  application:
    name: cloud-config  

>主要应用:

└───src
    └───main
        └───environment
            └───default
                ├───bootstrap.yml
                └───logback.xml

我的主应用程序在git仓库中有application.yml.

同样在git仓库中,我有一个带有属性的文件:application-default.properties.

我想将logback.xml移动到git存储库以使用spring-cloud获得它.我怎样才能做到这一点?

解决方法:

为了解决我的任务,我做了以下工作:

>将logback.xml添加到我的Spring Cloud存储库中;
>从主>中删除logback.xml.环境>默认目录;
>添加到主应用程序模块的bootstrap.yml中:

logging:
    config: http://localhost:8087/main-application/default/master/logback.xml

>文档:日志描述:配置:路径:Serving plain text

标签:spring-boot,spring-cloud,logback,spring
来源: https://codeday.me/bug/20191111/2021440.html