Intellij Idea认为Spring项目是Android项目

时间:2019-04-24 13:31:46

标签: java intellij-idea

我有一个gradle spring java项目设置,经过数周的工作,Idea突然认为这是一个android项目,在删除.gradle和out /文件夹并在设置中设置JDK之后,不断向我询问Android SDK。并启动,但不会复制运行该应用程序所需的application.properties文件。尝试重新启动,删除.gradle,.idea以及我可以找到的任何其他输出文件夹,但是似乎唯一暂时有用的解决方案是将存储库克隆到新文件夹。我的怀疑是我的gradle文件中有东西欺骗了想法,以为它是android,但找不到任何东西。

我的build.gradle

import org.springframework.boot.gradle.plugin.SpringBootPlugin

buildscript {
    ext {
        springVersion = "4.3.12.RELEASE"
        springBootVersion = '2.1.3.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("io.ebean:ebean-gradle-plugin:11.34.1")
    }
}

apply plugin: SpringBootPlugin

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'io.ebean'


repositories {
    mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8


dependencies {
    implementation("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")

    implementation("org.springframework.boot:spring-boot-starter-data-rest:${springBootVersion}")
    implementation("org.springframework.boot:spring-boot-starter-websocket:${springBootVersion}")
    implementation("org.mindrot:jbcrypt:0.3m")

    implementation('io.jsonwebtoken:jjwt-api:0.10.5')
    runtime "io.jsonwebtoken:jjwt-impl:0.10.5", "io.jsonwebtoken:jjwt-jackson:0.10.5"

    implementation("org.springframework:spring-jdbc:${springVersion}")
    implementation("org.apache.logging.log4j:log4j-core:2.11.1")

    implementation("org.postgresql:postgresql:42.2.5")
    implementation("org.apache.tomcat:tomcat-jdbc:9.0.8")

    implementation("io.ebean:ebean:11.36.1")
    implementation("io.ebean:ebean-agent:11.11.1")
    implementation("io.ebean:ebean-spring-txn:11.10.4")

    testImplementation("junit:junit:'4.+")
    testImplementation("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
}

1 个答案:

答案 0 :(得分:0)

清理IDE项目的特定文件并使用

重新生成它们
./gradlew cleanIdea idea

然后尝试再次导入项目。