Ant编译后,GWT DevMode无法正常工作

时间:2011-02-07 15:59:50

标签: gwt ant drag-and-drop compilation

我在ant compilation之后遇到特定浏览器的问题。如果我使用ant为所有浏览器构建一切正常工作,但是如果我为特定浏览器编译GWT DevMode在删除所有文件之前无效来自war。如您所知,所有浏览器的ant构建需要很长时间。因此,任务的可传递性非常低。 这是我的代码:对于OrphanWorkspace模块,我认为,我继承了所有必需的东西,并且<inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>也是。

   <?xml version="1.0" encoding="utf-8"?>

<project name="OrphanWorkspace" basedir=".">

 < import file="Base_build.xml"  />

<target name="OrphanWorkspace">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace"/>
    </antcall>
</target>
<target name="OrphanWorkspace_IE6">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace_IE6"/>
    </antcall>
</target>
<target name="OrphanWorkspace_SAFARI">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace_SAFARI"/>
    </antcall>
</target>

<target name="OrphanWorkspace_OPERA">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace_OPERA"/>
    </antcall>
</target>
<target name="OrphanWorkspace_FF3">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace_FF3"/>
    </antcall>
</target>

<target name="OrphanWorkspace_FF2">
    <antcall target="MAIN">
        <param name="permutation" value="com.site.gwt.orphanworkspace.OrphanWorkspace_FF2"/>
    </antcall>
</target>

Base_build.xml

<?xml version="1.0" encoding="utf-8"?>

   <project name="Base" basedir=".">

    <property name="gwtc.lib" value="..\gwtclib"/>
    <property name="gwt.dir" value="..\war"/>
    <property name="gwtcopt" value=" -XdisableCastChecking  -XdisableClassMetadata"/>
    <property name="soyc" value="-soyc"/>
     <property name="extra" value="-extra out\extra"/>

<path id="gwt.compiler.classpath">
    <pathelement location="${basedir}/src"/>
    <pathelement location="${basedir}/../bmt/src"/>
    <fileset dir="${gwtc.lib}"/>
</path>

<target name="MAIN">
    <echo message="Compiling ${permutation} section"/>

    <java failonerror="true" fork="true" classname="com.google.gwt.dev.Compiler"
          classpathref="gwt.compiler.classpath">
        <arg line="-logLevel INFO -localWorkers 2 -war ${gwt.dir} ${gwtcopt} ${permutation}"/>
        <jvmarg line="-Xmx1024M -Xss32M"/>
    </java>
</target>

最后我得到了这个 错误

enter image description here

1 个答案:

答案 0 :(得分:0)

我会仔细检查一下,在调试模式下,你使用的是同一个.gwt.xml(即你指定user.agent的那个),就像Ant构建的一样。