How can I fix "Unresolved reference: java" in Spring Boot Kotlin project?

JetBrains :

I have created Spring Boot project with

  • SDK 11. Java Version 11.0.3
  • Kotlin as language
  • Gradle

I'm following this Tutorial: https://scotch.io/@grahamcox82/how-to-build-a-simple-rest-api-with-kotlin-and-spring-boot

I'm trying to

import java.time.Instant

in my Kotlin data class

And have an error

Unresolved reference: java

build.gradle.kts file:

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

plugins {
    id("org.springframework.boot") version "2.1.6.RELEASE"
    id("io.spring.dependency-management") version "1.0.7.RELEASE"
    kotlin("jvm") version "1.2.71"
    kotlin("plugin.spring") version "1.2.71"
}

group = "com.smight"
version = "0.0.1"
java.sourceCompatibility = JavaVersion.VERSION_1_8

val developmentOnly by configurations.creating
configurations {
    runtimeClasspath {
        extendsFrom(developmentOnly)
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation("org.springframework.boot:spring-boot-starter-data-mongodb")
    implementation("org.springframework.boot:spring-boot-starter-webflux")
    implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
    implementation("org.jetbrains.kotlin:kotlin-reflect")
    implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    developmentOnly("org.springframework.boot:spring-boot-devtools")
    testImplementation("org.springframework.boot:spring-boot-starter-test")
    testImplementation("io.projectreactor:reactor-test")
}

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

Maybe I should install java library? How can I check this? Can anyone help please?

JetBrains :

The problem was that JDK was not correct found from IntelliJ

I solved the problem so:

  1. File -> Project Structure -> SDKs -> "+"
  2. Find the path to your SDK where it is installed
  3. New Project
  4. Copy/Paste
  5. Rebuild

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=162011&siteId=1