誰かがすでにこの種の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プラグイン+プラグインクロームブラウザー)で実行すると、エラー/警告が0になります。したがって、前のエラーはgwtデバッグを使用せずにのみ発生します(プロジェクトは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.0gwtバージョンと2.0mavenプラグインを使用しています。
Thx for uのヘルプと私は必要に応じてより多くの詳細を与えることができます!
>>> Resolved (see comments...) <<<