【问题标题】:Spring Boot cannot find spring-boot-starter-dao-jpa package using Gradle?Spring Boot 使用 Gradle 找不到 spring-boot-starter-dao-jpa 包?
【发布时间】:2018-04-21 18:37:28
【问题描述】:

我有以下 Gradle 文件:

我的这个工作正常,但突然之间似乎找不到这个 JPA 包。我已经添加了compile("org.springframework.boot:spring-boot-starter-dao-jpa")

每次我尝试构建时,它都会抱怨这一点。我检查了依赖关系图,它有一个红色下划线表示它丢失了。我能做些什么?

buildscript {
    ext {
        springBootVersion = '2.0.1.RELEASE'
    }

    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
    }
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'maven'

group = 'com.remindful'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    compile('org.springframework.boot:spring-boot-starter-jersey')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-web-services')
    compile('org.springframework.boot:spring-boot-starter-websocket')
    compile('org.springframework.session:spring-session-core')
    compile("org.springframework.boot:spring-boot-starter-dao-jpa")
    compile("com.h2database:h2:1.4.191")
    compile("org.springframework.boot:spring-boot-starter-data-jpa")
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
    compile group: 'com.h2database', name: 'h2', version: '1.4.197'
    testCompile 'junit:junit:4.12'
    testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.0.1.RELEASE'
}

// To force debug on application boot, switch suspend to y
bootRun {
    systemProperties System.properties
    jvmArgs=["-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"]
}

【问题讨论】:

  • 您是否尝试清理您的项目并重新构建它?

标签: java spring spring-boot gradle


【解决方案1】:

Spring Maven Repository 中没有spring-boot-starter-dao-jpa 的迹象,所以我怀疑它不存在。尝试删除该行。

也许这是来自下面两行 spring-boot-starter-data-jpa 依赖项的复制和粘贴错误...?

【讨论】:

    【解决方案2】:

    看起来当我重构我的项目结构时,intellij 变得聪明并重命名了依赖项。小心那个!

    【讨论】:

      猜你喜欢
      • 2021-01-18
      • 2021-02-09
      • 1970-01-01
      • 2014-04-07
      • 1970-01-01
      • 1970-01-01
      • 2016-01-29
      • 1970-01-01
      • 2021-11-11
      相关资源
      最近更新 更多