gpt4 book ai didi

java - 导入无法解决

转载 作者:行者123 更新时间:2023-12-01 12:50:14 25 4
gpt4 key购买 nike

这些导入无法在我的应用程序中解析,我使用的是 GWT 2.5.1,并且我检查了项目中的 maven lib,gwt 就在那里:

import com.google.gwt.core.ext.UnableToCompleteException;
import com.google.gwt.core.ext.typeinfo.JClassType;
import com.google.gwt.core.ext.typeinfo.JField;
import com.google.gwt.core.ext.typeinfo.JMethod;
import com.google.gwt.core.ext.typeinfo.JParameter;
import com.google.gwt.core.ext.typeinfo.JPrimitiveType;
import com.google.gwt.core.ext.typeinfo.JType;
import com.google.gwt.core.ext.typeinfo.TypeOracle;

pom.xml

<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

最佳答案

您应该替换{gwt.version}您的版本如下:

<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>1.5.2</version> //<== this here you should add
</dependency>

我认为这将解决依赖关系。

我猜您发现的依赖项显示了一个通用模板,但您应该将其调整为您的版本。我发现您可能使用不同的 <artifactId> (例如 <artifactId>gwt-servlet</artifactId> )但这就是总体思路。

关于java - 导入无法解决,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24278468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com