java - 找不到具有 starter-security 依赖项的 springframework.security 包?

标签 java spring gradle spring-security dependency-management

我正在为我的项目使用 spring bootspring starter 依赖项。 我尝试在 Gradle 中使用 spring starter security 依赖项,但在项目中找不到唯一的安全包。 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') 
}

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

项目中类的一个例子:

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
 */

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

最佳答案

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

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

关于java - 找不到具有 starter-security 依赖项的 springframework.security 包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33416667/

相关文章:

java - 如何阻止 Gradle 复制构建文件夹中的资源

json - 如何在 Spring 全局异常处理程序中处理 JSON 方法中的不同异常?

java - 如何从 docker 容器访问 gradle 测试报告

java - Spring 数据 Elasticsearch : Multiple Index with same Document

java - 运行扩展 HTTPServlet 的简单类时出现 404 错误

java - 调用init方法失败;嵌套异常是 java.lang.IllegalArgumentException : The namespace property is required

java - Spring bean 注入(inject)无法正常工作

Gradle leftshift << 操作符需要 Task 吗? (是不是多余)

c - Gradle C 插件示例

java - 如何使用过滤器匹配包含字符串的字符串 - Google App Engine