gpt4 book ai didi

javascript - GWT 2.6.0 - 未捕获 java.lang.ClassCastException

转载 作者:太空宇宙 更新时间:2023-11-04 13:40:33 26 4
gpt4 key购买 nike

我在 super 开发模式下使用 GWT 2.6.0(使用适用于 Linux 的 IntelliJ Idea 14 + Chrome 43.0.2357.130(64 位))。

页面加载期间 Chrome 控制台出现异常

Uncaught java.lang.ClassCastException Impl.java:99
(anonymous function) @ Impl.java:99
gwtOnLoad @ oldstar-0.js:87303
(anonymous function) @ ClassLiteralHolder.java:23

Impl.java:99com.google.gwt.core.client.impl.Impl 中的抛出 e;

 public static native JavaScriptObject entry(JavaScriptObject jsFunction) /*-{
return function() {
try {
return @com.google.gwt.core.client.impl.Impl::entry0(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)(jsFunction, this, arguments);
} catch (e) {
// This catch block is here to ensure that the finally block in entry0
// will be executed correctly on IE6/7. We can't put a catch Throwable
// in entry0 because this would always cause the unhandled exception to
// be wrapped in a JavaScriptException type.
throw e;
}
};
}-*/;

oldstar-0.js:87303 是生成的 oldstar-0.js 中的 $entry(init_2)();

function gwtOnLoad(errFn, modName, modBase, softPermutationId){
$moduleName = modName;
$moduleBase = modBase;
if (errFn)
try {
$entry(init_2)();
}
catch (e) {
errFn(modName);
}
else {
$entry(init_2)();
}
}
package com.google.gwt.lang;

final class ClassLiteralHolder {
}

还有init_2(),它是对EntryMethodHolder.java中init()的引用

package com.google.gwt.lang;

/**
* This class holds the boot strap entry method that the compiler generates.
*/
public class EntryMethodHolder {
public static final void init() {
// Filled in by the compiler to call entry methods.
}
}

最佳答案

粘贴的代码是JS和Java之间的边界,抛出这个异常的可能性极小(我敢说不可能)。

正如消息所示,这是一个未捕获异常,在代码中的其他地方抛出,并在从 Java 泄漏到 JS 之前被此连接捕获。

认为您的 EntryPoint 是由 EntryMethodHolder.init 调用的 - 这强烈暗示您的 EntryPoint 在您的应用尝试启动时抛出 ClassCastException,但 UncaughtExceptionHandler(如果您有一个...)尚未设置来处理此问题。

尝试查看 onModuleLoad 中的内容,或添加 try/catch 来确定它的来源。

关于javascript - GWT 2.6.0 - 未捕获 java.lang.ClassCastException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31274462/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com