GWT RPC:使用其他服务实现的方法失败

时间:2016-06-11 18:03:06

标签: java gwt gwt-rpc

我在调用我的一个GWT服务时遇到错误。

enter image description here

Eclipse控制台提出了这个:

SCHWERWIEGEND: javax.servlet.ServletContext log: Exception while dispatching incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract de.hdm.gruppe09.clickandlove.shared.report.AllInfosOfProfileReport      de.hdm.gruppe09.clickandlove.shared.ReportGenerator.createAllInfosOfProfileReport(de.hdm.gruppe09.clickandlove.shared.bo.Profil) throws java.lang.IllegalArgumentException' threw an unexpected exception: java.lang.NullPointerException
.......
Caused by: java.lang.NullPointerException
at de.hdm.gruppe09.clickandlove.server.report.ReportGeneratorImpl.createAllInfosOfProfileReport(ReportGeneratorImpl.java:107)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.appengine.tools.development.agent.runtime.Runtime.invoke(Runtime.java:130)
at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561)
... 40 more

ReportGeneratorImpl.java:107看起来像这样(107是两个Sysos中的第一个):

103       //Abrufen des eingeloggten Profils. Wird benoetigt für die anschließende Berechnung des Aehnlichkeitsmaßes
104    Profil ep = this.verwaltung.getEingeloggtesProfil();

//Ausgaben über das ep. Nur zu Textzwecken
107       System.out.println("RGImpl: eingeloggtesProfilID:" + ep.getId());
   System.out.println("RGImpl: eingeloggtesProfilMail:" + ep.getEmail());


//Abrufen des Aehnlichkeitsma�es

int score = this.verwaltung.berechneAhnlichkeit(p, ep);
System.out.println("RGImpl: Score:" + score);
//Score Int Wert in String umwandeln, da new Column nur String Werte annimmt
String scorestring = Integer.toString(score);
//Setzen des Aehnlichkeitsma�es
Row TopRow = new Row();
TopRow.addColumn(new Column(fullname));
TopRow.addColumn(new Column(scorestring));

显然,对象ep必须为null。可能是因为104行失败了。 每当我使用" this.verwaltung"的方法时,我的方法都会失败。 以下是我创建verwaltung对象的方法:

private Verwaltung verwaltung = null;

public void init() throws IllegalArgumentException {
    VerwaltungImpl a = new VerwaltungImpl();
    a.init();
    this.verwaltung = a;
}

因为" ReportGeneratorImpl"和VerwatlungImpl"正在服务器上运行我明白我不需要回调来使用彼此的方法。是吗?

1 个答案:

答案 0 :(得分:0)

  

显然,对象ep musst [原文如此]为空。

您是否考虑过启动GWT与调试器一起使用的嵌入式Jetty服务器并在第104行设置断点,以便您可以单步执行代码并查看NullPointerException的原因是什么?

有关详细信息,请参阅在开发期间测试服务http://www.gwtproject.org/doc/latest/DevGuideServerCommunication.html