springboot 配置jpa启动报Error processing condition on org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration.pageableCustomizer

springboot +gradle 配置jpa启动报Error processing condition on org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration.pageableCustomizer

经过一步步查看删选是因为spring-data-jpa包的版本冲突导致。

解决方案:

修改gradle的build.gradle配置文件

a.添加plugin("org.springframework.boot")

b.修改引入方式 compile("org.springframework.boot:spring-boot-starter-data-jpa")

 

build.gradle完整配置为:

group ‘com.360.keplerDevMananger‘
version ‘1.0-SNAPSHOT‘

apply plugin: ‘java‘
apply plugin: ‘idea‘
plugin("org.springframework.boot")
apply plugin: ‘war‘

buildscript {

ext {
springBootVersion = "1.5.2.RELEASE"
}

repositories {
maven { url "https://repo.spring.io/libs-release" }
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.0.RELEASE")
}
}

repositories {
mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
compile ‘jstl:jstl:1.2‘
compile ‘com.alibaba:fastjson:1.2.21‘
compile ‘com.squareup.okhttp3:okhttp:3.9.1‘
compile ‘commons-io:commons-io:2.5‘
compile ‘org.apache.commons:commons-lang3:3.4‘
compile ‘org.apache.ant:ant:1.8.2‘
compile ‘org.apache.tomcat.embed:tomcat-embed-jasper:8.5.30‘
compile ‘javax.servlet:javax.servlet-api:3.1.0‘
compile ‘javax.servlet:jstl:1.2‘
runtime ‘mysql:mysql-connector-java:5.1.45‘
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile ‘org.springframework.boot:spring-boot-starter-thymeleaf:1.5.2.RELEASE‘
compile ‘org.springframework.boot:spring-boot-starter-parent:1.5.2.RELEASE‘
compile ‘org.springframework.boot:spring-boot-starter-test:1.5.2.RELEASE‘

compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}

testCompile(‘org.springframework.boot:spring-boot-starter-test:2.0.0.RELEASE‘)
compile files(‘libs/MQSDK.jar‘)//引入自定义包
testCompile group: ‘junit‘, name: ‘junit‘, version: ‘4.11‘

}

文章来自:https://www.cnblogs.com/jiangds/p/9003696.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3