Unable to start spring boot server

前端 未结 9 1891
既然无缘
既然无缘 2020-12-29 03:51

I am new to spring boot and when I try to start my server , I get the following Exception. I understand that this has something to do with dependency conflict, but still una

9条回答
  •  感情败类
    2020-12-29 04:18

    Excluding logback-classic from spring-boot-starter-web and spring-boot-starter-actuator worked for me

    compile("org.springframework.boot:spring-boot-starter-web:1.1.10.RELEASE") {
        exclude module: "spring-boot-starter-tomcat"
        exclude module: "spring-boot-starter-logging"
        exclude module: "logback-classic"
    }
    compile("org.springframework.boot:spring-boot-starter-actuator:1.1.10.RELEASE") {
        exclude module: "logback-classic"
    }
    

提交回复
热议问题