我在GWT编译期间遇到了这个编译错误。我用它来解析XML文档。
[ERROR] Line 24: No source code is available for type org.w3c.dom.Node; did you forget to inherit a required module?
[ERROR] Line 28: No source code is available for type org.w3c.dom.NodeList; did you forget to inherit a required module?
[ERROR] Aborting compile due to errors in some input files
根据我对此所做的任何研究,它说类路径可能会丢失,但由于这将默认包含在gwt-user.jar和JRE7中,并且我还没有包含任何外部jar,所以不存在重复的情况!并且您不能在客户端代码中使用这些类型的代码,因为它将转换为javascript
我有一个类在我的共享文件夹(GWT模型视图Presenter项目结构)中使用此Node,这基本上是一个模型!
如果1为真,我怎样才能重构我的客户端演示者访问此模型而不是每次都没有RPC调用?
有没有其他替代方法?
我的GWT配置文件。
<module rename-to='xxxxx'>
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.google.gwt.user.theme.standard.Standard'/>
<inherits name="com.google.gwt.xml.XML" />
<entry-point class='com.xxxx.xxxxx.gwt.client.ProjectEntry'/>
<source path='client'/>
<source path='shared'/>
</module>
编辑:我现在已经包含了xml继承!它的工作
答案 0 :(得分:5)
在您的代码库中的某个地方,您正在使用org.w3c.dom.Node和org.w3c.dom.NodeList这些不是白名单。换句话说,你不能使用这些类!见;
https://developers.google.com/web-toolkit/doc/latest/RefJreEmulation
你应该将这些包用于xml;
import com.google.gwt.xml.client.Document;
import com.google.gwt.xml.client.Element;
import com.google.gwt.xml.client.Node;
import com.google.gwt.xml.client.NodeList;
import com.google.gwt.xml.client.XMLParser;