1

我对这个 ant 脚本有一个错误:

<path id="gwt-client.classpath">
    <fileset dir="${src.dir}">
        <include name="**/*.gwt.xml" />
    </fileset>
    <pathelement location="${gwt.client.dir}" />
    <pathelement location="${gwt.shared.dir}" />
</path>

<path id="gwt-sdk.classpath">
    <fileset dir="${gwt.sdk.dir}">
        <include name="**/*.jar" />
    </fileset>
</path>

<target name="gwt-compile" depends="prepareResources">
    <property name="clientClasspath" refid="gwt-client.classpath" />
    <echo message="==> gwt-client classpath = ${clientClasspath}" />
    <java failonerror="true" fork="true" classname="com.google.gwt.dev.Compiler">
        <classpath>
            <path refid="gwt-sdk.classpath" />
            <path refid="gwt-client.classpath" />
        </classpath>
        <jvmarg value="-Xmx256M" />
        <arg line="${gwt.module.name} -logLevel INFO  -style PRETTY" />
    </java>
</target>

虽然控制台告诉我很棒的事情:

[echo] ==> gwt-client classpath = 
  C:\code\repository\comments\src\io\robusta\fora\comments\Comments.gwt.xml;
  C:\code\repository\comments\src\io\robusta\fora\comments\client;
  C:\code\repository\comments\src\io\robusta\fora\comments\shared

所有这些文件都存在,但我有一个非常经典的错误:

[java] Loading inherited module 'io.robusta.fora.comments.Comments'
     [java]    [ERROR] Unable to find 'io/robusta/fora/comments/Comments.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

我倾向于认为我在 path、pathelement、refid 之间误用了 Ant 术语……或者错误消息应该寻找src/io/robusta/fora/comments/Comments.gwt.xml而不是io/robusta/fora/comments/Comments.gwt.xml

4

1 回答 1

3

我认为您误解了类路径的工作原理。类路径中的每个路径元素都是一个,完全限定的名称(包 + 类名)被解析为根。这些路径可以是文件夹或档案(ZIP 或 JAR)。

包中的类io.robusta.fora.comments.client(在您的情况下)位于C:\core\repository\comments\src文件夹中。这应该是类路径中的内容。

资源相同:io/robusta/fora/comments/Comments.gwt.xml在类路径中查找,因此,在您的情况下,C:\core\repository\comments\src应该在类路径中,以便可以将相对路径正确解析为文件。

于 2013-09-15T11:55:28.460 回答