ClassCastException仅在没有gwt debug的情况下运行java项目时

时间:2012-08-27 14:15:02

标签: java javascript gwt maven classcastexception

我想知道是否有人有这种javascript错误:

在Chrome控制台中:

Uncaught java.lang.ClassCastException (anonymous function)
EED997003B4F236C1F5D6AE53E1170DA.cache.html:1624

使用Firefox:

CallPageHandler method : 
'java.lang.ClassCastException' when calling method: [nsIDOMEventListener::handleEvent]

考虑到当我在调试模式下执行我的项目时(gwt eclipse插件+插件chrome浏览器)我有0错误/警告。所以之前的错误只发生在没有使用gwt debug的情况下(项目是用maven成功构建的)。

我已多次查看我的客户端来源以找到可能的错误,但我什么都没发现......

也许我在pom文件中配置的gwt插件不正确(可能是调试和无调试模式之间不同行为的解释):

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

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>${gwt.version}</version>
            <executions>
                <execution>
                    <configuration>
                        <webappDirectory>${basedir}/target/${project.build.finalName}</webappDirectory>
                        <module>[myMainClass]</module>
                    </configuration>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
  • 我正在使用2.4.0 gwt版本和2.0 maven插件。

对于你的帮助,我可以在必要时提供更多细节!

>>> Resolved (see comments...) <<<

0 个答案:

没有答案