我一直在使用 IntelliJ IDEA 进行 Spring Webflux 项目,没有任何问题。现在(使用 Ultimate 2019.2.1),构建/重建报告成功完成,但发出无法创建模块并且需要重新导入 Gradle 项目的警告。“Unable to make the module Xxx, related gradle configuration before found. 请重新导入Gradle工程再试。”我已从 Gradle 视图重新导入项目,但这并没有解决警告(即,构建过程生成的相同警告)。我也试过“无效并重新启动”来尝试清除缓存,但没有解决警告。作为“万岁玛丽”,我已经卸载并重新安装了 IntelliJ...再次没有解决警告。该项目在 IDE 中生成为“SpringIO”,生成过程中确定的唯一依赖项是 Spring Webflux。我试图通过 JetBrains 支持(他们提供了帮助)来解决这个问题,但 JetBrains 似乎无法复制警告。这是项目中唯一的源文件(即默认的“main”)...package foo.demo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class TestApplication { public static void main(String[] args) { SpringApplication.run(TestApplication.class, args); }}这是正在使用的build.gradle (尽管我在之前的build.gradle文件中没有看到“依赖管理”插件)。plugins { id 'org.springframework.boot' version '2.1.7.RELEASE' id 'io.spring.dependency-management' version '1.0.8.RELEASE' id 'java'}group = 'foo'version = '0.0.1-SNAPSHOT'sourceCompatibility = '1.8'repositories { mavenCentral()}dependencies { implementation 'org.springframework.boot:spring-boot-starter-webflux' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'io.projectreactor:reactor-test'}
1 回答
慕码人2483693
TA贡献1860条经验 获得超9个赞
JetBrains 最新版本 (2019.2.1) 似乎有一个或多个问题,其中一个问题似乎是造成上述行为的原因。我说“一个或多个问题”是因为我还发现 application.properties 文件中的“logging.level”条目没有受到 SLF4J/logback 的尊重。
添加回答
举报
0/150
提交
取消