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

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

1. Error reason

Springboot introduces rocketmq spring boot starter and reports an error

 

 

2. Solution – exclude dependencies

        <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>

 

Project started successfully