我已经按照下面的指南在一个Spring Boot 项目上安装和设置了graphqldgs:https://netflix.github.io/dgs/getting-started/
当我尝试编写一个测试用例时-遵循这里的指南:https://netflix.github.io/dgs/query-execution-testing/-我无法导入其中一个值,如下所示import com.netflix.graphql.dgs.autoconfig.DgsAutoConfiguration
我找不到DgsAutoConfiguration。我唯一的东西是下面点符号后面的星号(*):import com.netflix.graphql.dgs.autoconfig.
我有这些graphqldgs pom依赖项如下:
<dependency>
<groupId>com.netflix.graphql.dgs</groupId>
<artifactId>graphql-dgs-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.netflix.graphql.dgs</groupId>
<artifactId>graphql-dgs-platform-dependencies</artifactId>
<!-- The DGS BOM/platform dependency. This is the only place you set version of DGS -->
<version>4.9.16</version>
<type>pom</type>
<scope>import</scope>
</dependency>
任何帮助都很感激。谢谢!
1条答案
按热度按时间ocebsuys1#
我在IntelliJ中遇到过这个问题,安装Kotlin插件[1]后解决了这个问题。
[1][https://plugins.jetbrains.com/plugin/6954-kotlin](https://plugins.jetbrains.com/plugin/6954-kotlin)