6

Event(抽象)から拡張するGameEventタイプのオブジェクトを返すRPCサービスがあります。クライアント側でオブジェクトを取得すると、Eventから継承されたすべてのプロパティ(eventId、copyEventId、gameTimeGMT)がに設定されnullますが、サーバー側では、これらのプロパティに値があります。

public class GameEvent extends Event implements IsSerializable { 
    private String homeTeam; 
    private String awayTeam; 
    public GameEvent() { 
    } 
} 

// Annotation are from the twig-persist framework which should not 
// impact the serialization process. 
public abstract class Event implements IsSerializable { 
    @Key 
    protected String eventId; 
    @Index 
    protected String copyEventId; 
    protected Date gameTimeGMT; 
    protected Event() { 
    }
}

更新:gwt-platformフレームワーク(MVP実装)を使用しています。これがサービスクライアント側への呼び出しです。はresult.getGE()GameEventオブジェクトを返しますが、nullプロパティがあります。

dispatcher.execute(
        new GetFormattedEventAction(
                id),
        new AsyncCallback<GetFormattedEventResult>() {

            @Override
            public void onFailure(Throwable caught) {
                caught.printStackTrace();
            }

            @Override
            public void onSuccess(
                    GetFormattedEventResult result) {
                FormattedGameEvent formattedGameEvent = new FormattedGameEvent(
                        result.getGE());
            }
        });

アクションハンドラー:

public class GetFormattedEventActionHandler implements
        ActionHandler<GetFormattedEventAction, GetFormattedEventResult> {

    @Override
    public GetFormattedEventResult execute(GetFormattedEventAction action,
            ExecutionContext context) throws ActionException {
        GameEvent gameEvent = null;
        QueryResultIterator<GameEvent> rs = datastore.find().type(
                GameEvent.class).addFilter("copyEventId", FilterOperator.EQUAL,
                action.getEventId()).returnResultsNow();
        if (rs.hasNext()) {
            gameEvent = rs.next();
        }
        return new GetFormattedEventResult(gameEvent);
    }
}

結果:

public class GetFormattedEventResult implements Result {

    private GameEvent e;

    @SuppressWarnings("unused")
    private GetFormattedEventResult() {
    }

    public GetFormattedEventResult(GameEvent gameEvent) {
        e = gameEvent;
    }

    public GameEvent getGE() {
        return e;
    }
}
4

1 に答える 1

0

刺してみます。

Event クラスが GWT シリアライゼーション ホワイトリスト (.gwt.rpcサービス インターフェイスごとに生成されるファイル) に含まれていることを確認します。そうでない場合は、GWT をだまして追加させる必要があるかもしれません。

于 2010-08-25T23:32:12.943 に答える