未找到具有 starter-security 依赖性的 springframework.security 包?

Iva*_*cki 5 java spring spring-security dependency-management gradle

我正在为我的项目使用spring bootspring starter 依赖项。我尝试在Gradle 中使用 spring starter 安全依赖项,但在项目中只找不到安全包。IDE 是IntelliJ IDEA吗?

我的build.gradle文件:

buildscript {
    ext {
        springBootVersion = '1.2.7.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") 
        classpath('io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE')
        classpath("org.springframework:springloaded:1.2.4.RELEASE")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot' 
apply plugin: 'io.spring.dependency-management' 

jar {
    baseName = 'hashfon-spring'
    version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenCentral()
}


dependencies {
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-data-rest')
    compile('org.springframework.boot:spring-boot-starter-hateoas')
    compile('org.springframework.boot:spring-boot-starter-jersey')
    compile('org.springframework.boot:spring-boot-starter-mustache')
    compile('org.springframework.boot:spring-boot-starter-thymeleaf')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-security')

    runtime('mysql:mysql-connector-java')
    testCompile('org.springframework.boot:spring-boot-starter-test') 
}
Run Code Online (Sandbox Code Playgroud)

除了安全性之外的所有库都可以在外部库中找到...

项目中的一个类示例:

import org.springframework.context.annotation.Configuration;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.*;
import org.springframework.hateoas.*;
import org.springframework.mock.*;
import org.springframework.data.*;
import org.springframework.security.*;  //cannot resolve symbol!
/**
 * I can import all packages from external libraries except security
 */
Run Code Online (Sandbox Code Playgroud)

附注。我尝试了很多不同的spring-security-core发布版本,但没有任何反应。

Iva*_*cki 6

在多次处理这个问题后,我遇到了以下对我 100% 有效的解决方案:

  1. 转到文件 | 使缓存失效
  2. 删除存储所有依赖项的文件夹(对于 UNIX 系统为~/.gradle/) - 如果它在失效后存在
  3. 重启 Intellij IDEA
  4. 通过刷新 gradle 重新导入 gradle 依赖项: 在此处输入图片说明