Unable to start spring boot server

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

    Gradle solution is adding below lines in build.gradle :

    configurations {
        all*.exclude module : 'spring-boot-starter-logging'
    }
    

提交回复
热议问题