ERROR in ch.qos.logback.core.joran.spi.Interpreter@73:41 - no applicable action for [AppenderRef], current ElementPath is [[Configuration][Loggers][Root][AppenderRef]]

1、错误原因

SpringBoot 引入 rocketmq-spring-boot-starter 报错

 

 

2、解决方案-排除依赖

        <dependency>
            <groupId>org.apache.rocketmq</groupId>
            <artifactId>rocketmq-spring-boot-starter</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

 

 项目成功启动

 

posted @ 2021-12-26 19:45  KwFruit  阅读(1247)  评论(0)    收藏  举报