我最近开始在Kotlin中编写Sping Boot 应用程序。我打算使用Kotlin协程。我已经在Gradle文件中添加了所有必需的依赖项,但IDE一直显示以下错误:
Cannot access class 'kotlin.coroutines.CoroutineContext'. Check your module classpath for missing or conflicting dependencies
字符串
下面是我编写的示例代码:
fun createThread(): MyThread {
GlobalScope.async {
openApiService.createThread()
}.await()
}
型
以下是我的Gradle文件:
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "3.2.1"
id("io.spring.dependency-management") version "1.1.4"
kotlin("jvm") version "1.9.21"
kotlin("plugin.spring") version "1.9.21"
}
group = "<mypackage>"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("com.aallam.openai:openai-client:3.6.2")
implementation("io.ktor:ktor-client-java:2.3.2")
implementation("com.theokanning.openai-gpt3-java:service:0.18.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.7.3")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
型
1条答案
按热度按时间lfapxunr1#
如果您有正确的导入(看起来确实如此),这可能是由缓存问题引起的。
如果你使用的是Intellij,你可能想“无效缓存并重新启动”。你可以在 * 文件 * 菜单中找到。这里有一个link to the official page。
另一个尝试是从
/.m2/repository
文件夹中删除maven缓存。如果该文件夹不在默认位置,可以使用以下命令找到它:字符串
如果使用gradle,您还可以从
/.gradle/caches/
文件夹中删除该缓存。