這不是我第一次RPC嘗試。所有其他人都工作得很好,但我無法弄清楚,爲什麼不這樣做。GWT RPC ClassNotFoundException初始化AsyncCallback
public void confirmRequest(String requestId, boolean confirmWithDefault, List<String> values, final String laneId){
AsyncCallback<Void> callback = new AsyncCallback<Void>(){
@Override
public void onFailure(Throwable caught)
{
// TODO Auto-generated method stub
}
@Override
public void onSuccess(Void result)
{
Window.alert("jo");
ServiceCalls.this.mainmenu.getSlidePanel().getLaneMenu().getProperLanes().get(laneId)
.getDefaultButton().setText("");
statusFor();
}
};
getLaneProxy().confirmRequest(requestId, confirmWithDefault, values, laneId, callback);
}
當我運行PROGRAMM,它甚至不拋出異常。它只是沒有做它應該做的事情。然後我調試它,發現此時拋出了一個ClassNotFoundException異常。
AsyncCallback< Void> callback = new AsyncCallback<Void>()
什麼是異常信息? –
可以粘貼堆棧跟蹤? –
stacktrace爲空=(不知道爲什麼 – Laura