Unable to start spring boot server

前端 未结 9 1888
既然无缘
既然无缘 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:33

    Add this to your build.gradle

    configurations.all {
            exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
            exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
            exclude group: 'org.springframework.boot', module: 'logback-classic'
    }
    

提交回复
热议问题