所以我在Eclipse中有一个常规的Java项目IRBenchmarker,我在其中定义了几个类,其中一个是enum edu.mit.ll.irbenchmark.EvaluationMetric。现在我正在编写一个Google Web Toolkit Eclipse项目IRBenchmarker-WebGUI,我希望客户端将EvaluationMetric值作为参数传递给服务器上的服务。
我按照Eclipse 3.4 GWT 1.6 project - how to reference source from other projects?的说明操作,但一定是做错了。这就是我设置的方式。
workspace
-- IRBenchmarker-WebGUI
-- src
-- edu.mit.ll.irbenchmark
-- IRBenchmarker_WebGUI.gwt.xml
-- IRBenchmarker
-- src
-- edu.mit.ll.irbenchmark
-- IRBenchmarker.gwt.xml
-- edu.mit.ll.irbenchmark.client
-- EvaluationMetric.java
IRBenchmarker.gwt.xml文件包含:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd">
<!-- Expose classes useful to the web client as a Google Web Toolkit module -->
<module rename-to='IRBenchmarker'>
<inherits name='com.google.gwt.user.User' />
<source path="client" />
</module>
IRBenchmarker_WebGUI.gwt.xml文件包含:
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='irbenchmarker_webgui'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<inherits name='com.google.gwt.user.theme.clean.Clean'/>
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Other module inherits -->
<inherits name="edu.mit.ll.irbenchmark.IRBenchmarker" />
<!-- Specify the app entry point class. -->
<entry-point class='edu.mit.ll.irbenchmark.client.IRBenchmarker_WebGUI'/>
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
</module>
IRBenchmarker-WebGUI的Eclipse Java Build Path包含IRBenchmarker项目。
当我尝试运行项目并在浏览器中显示页面时,我得到了
[ERROR] [irbenchmarker_webgui] - Line 124: No source code is available for type edu.mit.ll.irbenchmark.client.EvaluationMetric; did you forget to inherit a required module?
请注意,在此错误之上,在“验证新编译的单位”下有
10:57:15.767 [INFO] [irbenchmarker_webgui] Ignored 3 units with compilation errors in first pass.
Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
我错过了什么?
更新:所以我正在制作一个包含IRBenchmarker源代码的JAR文件,并将其包含在IRBenchmarker-WebGUI中。似乎工作,虽然每次我在IRBenchmarker中更改代码时都不得不重建jar。
答案 0 :(得分:1)
您可能必须在DevMode启动配置的 Classpath 选项卡中显式添加其他项目的src
文件夹。
答案 1 :(得分:0)
尝试放
<inherits name="edu.mit.ll.irbenchmark.IRBenchmarker" />
在您的IRBenchmarker.gwt.xml中
我在GWT中有一个单独的项目,它包含我的模型,我在两个GWT.xml文件中都有该行。
此外,请确保您的项目的文件夹结构与您的GWT项目中的完全相同的结构匹配的根客户端和服务器软件包。