作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我通过他们的IntelliJ插件启动了一个新的Ktor项目,并且Gradle可以正常编译和运行所有内容。但是,在IntelliJ中,所有引用slf4j记录器的内容都存在Unresolved reference: ...
错误。
我的导入和设置日志级别如下所示(很抱歉,我的声誉不够高,无法发布图像):
生成具有以下依赖项的项目
// gradle.properties
ktor_version=1.4.0
logback_version=1.2.1
// build.gradle.kts
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
implementation("io.ktor:ktor-server-netty:$ktor_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("io.ktor:ktor-server-core:$ktor_version")
implementation("io.ktor:ktor-auth:$ktor_version")
implementation("io.ktor:ktor-auth-jwt:$ktor_version")
implementation("io.ktor:ktor-jackson:$ktor_version")
testImplementation("io.ktor:ktor-server-tests:$ktor_version")
}
我尝试将
org.slf4j:slf4j-nop:1.7.30
添加到我的依赖项中而没有任何运气。
package com.example
import io.ktor.application.*
import io.ktor.response.*
import io.ktor.request.*
import io.ktor.features.*
import org.slf4j.event.*
import io.ktor.routing.*
import io.ktor.http.*
import io.ktor.auth.*
import com.fasterxml.jackson.databind.*
import io.ktor.jackson.*
fun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args)
@Suppress("unused") // Referenced in application.conf
@kotlin.jvm.JvmOverloads
fun Application.module(testing: Boolean = false) {
install(CallLogging) {
level = Level.INFO
filter { call -> call.request.path().startsWith("/") }
}
install(Authentication) {
}
install(ContentNegotiation) {
jackson {
enable(SerializationFeature.INDENT_OUTPUT)
}
}
routing {
get("/") {
call.respondText("HELLO WORLD!", contentType = ContentType.Text.Plain)
}
get("/json/jackson") {
call.respond(mapOf("hello" to "world"))
}
}
}
最佳答案
这是Gradle和IntelliJ的缓存问题,可能是由其他项目依赖项引起的。对于IntelliJ,slf4j-api
库为空。使用rm -rf ~/.gradle/caches
删除全局Gradle缓存并重新下载依赖项为我解决了这个问题。
关于kotlin - IntelliJ在新的Ktor项目中缺少对slf4j的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63761379/
我是一名优秀的程序员,十分优秀!