java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.jdbc.JndiDataSourceAutoConfiguration

前端 未结 4 1850
攒了一身酷
攒了一身酷 2020-12-15 21:59

I am trying to write a standalone executable jar (fat jar) . I am using spring boot gradle plugin and writing a SpringBoot App to do this.

Here is my Application.ja

4条回答
  •  借酒劲吻你
    2020-12-15 22:27

    This is caused by non-matching Spring Boot dependencies. Check your classpath to find the offending resources. You have explicitly included version 1.1.8.RELEASE, but you have also included 3 other projects. Those likely contain different Spring Boot versions, leading to this error.

提交回复
热议问题