在我的 GWT 应用程序中,我有一个类似于http://www.summa-tech.com/blog/2012/06/11/7-tips-for-exception-handling-in-gwt/的错误记录器
// Handle all exception errors
GWT.setUncaughtExceptionHandler( new UncaughtExceptionHandler() {
@Override
public void onUncaughtException(Throwable e) {
Window.alert("caught it!");
}
};
此代码在主机模式下完美运行,但在生产模式下,它会按照文档中的说明进行编译。有没有办法让这段代码进入生产模式?
GWT.setUncaughtExceptionHandler 的文档 http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/GWT.UncaughtExceptionHandler.html
干杯,