Intellij Idea 如何启用Spring SecurityKotlinDSL?

htrmnn0y  于 2023-04-05  发布在  Spring
关注(0)|答案(4)|浏览(131)

我们如何启用对Spring SecurityKotlinDSL的支持?
从IDE(IntelliJ)的屏幕截图中可以看到,DSL不可用:

以下是完整的SecurityConfig.kt文件:

package com.example.backend.core

import org.springframework.context.annotation.Bean
import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity
import org.springframework.security.config.web.server.ServerHttpSecurity
import org.springframework.security.web.server.SecurityWebFilterChain

@EnableWebFluxSecurity
class SecurityConfig {

  @Bean
  fun springSecurityFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain? {
    return http {
      csrf { disable() }
      formLogin { disable() }
      httpBasic { disable() }
      // ...
    }
  }

}

这是我们的build.gradle.kts

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

val springBootVersion = "2.4.2"

plugins {
    id("org.springframework.boot") version "2.4.2"
    id("io.spring.dependency-management") version "1.0.11.RELEASE"
    kotlin("jvm") version "1.4.21"
    kotlin("plugin.spring") version "1.4.21"
}

group = "com.example"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_11

configurations {
    compileOnly {
        extendsFrom(configurations.annotationProcessor.get())
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation("org.springframework.boot:spring-boot-starter-actuator")
    implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
    implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
    implementation("org.springframework.boot:spring-boot-starter-security")
    implementation("org.springframework.boot:spring-boot-starter-webflux")
    implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
    implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
    implementation("org.flywaydb:flyway-core")
    implementation("org.jetbrains.kotlin:kotlin-reflect")
    implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
    developmentOnly("org.springframework.boot:spring-boot-devtools")
    runtimeOnly("io.micrometer:micrometer-registry-prometheus")
    runtimeOnly("org.postgresql:postgresql")
    annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
    testImplementation("org.springframework.boot:spring-boot-starter-test")
    testImplementation("io.projectreactor:reactor-test")
    testImplementation("org.springframework.security:spring-security-test")
}

tasks.withType<KotlinCompile> {
    kotlinOptions {
        freeCompilerArgs = listOf("-Xjsr305=strict")
        jvmTarget = "11"
    }
}

tasks.withType<Test> {
    useJUnitPlatform()
}

这是intellij版本:

IntelliJ IDEA 2020.3 (Community Edition)
Build #IC-203.5981.155, built on November 30, 2020
Runtime version: 11.0.9+11-b1145.21 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Linux 5.4.0-64-generic
GC: ParNew, ConcurrentMarkSweep
Memory: 1979M
Cores: 12
Registry: compiler.automake.allow.when.app.running=true
Non-Bundled Plugins: Key Promoter X, Dart, io.flutter, Lombook Plugin, org.jetbrains.kotlin
Current Desktop: X-Cinnamon

我们是否遗漏了一些依赖性?它是否需要任何特定的intellij设置?

taor4pac

taor4pac1#

您需要手动导入ServerHttpSecurityinvoke

import org.springframework.security.config.web.server.invoke

由于1.4中的this Kotlin issue,IDE没有向您提供应有的建议。
这个问题将在Kotlin1.4.30中修复。

oyjwcjzk

oyjwcjzk2#

我注意到你的问题是关于WebFlux的,但只是补充了**@Eleftheria的**答案。
对于WebMvc用户,您应该导入:

import org.springframework.security.config.web.servlet.invoke
  • (servlet vs服务器)*
neskvpey

neskvpey3#

对我有效的方法是显式调用HttpSecurity对象上的.invoke方法:

http.invoke {
    csrf { disable }
}

这将强制我的IDE(我使用IntelliJ)导入.invoke

jhiyze9q

jhiyze9q4#

这个DSL是从Spring Security 5.3版本开始内置的。例如org.springframework.security:spring-security-config:5.3.4.RELEASE库有它:org.springframework.security.config.web.servlet.HttpSecurityDsl#csrf例如

compile group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.3.3.RELEASE'

图书馆将包含它。

相关问题