<< | 2024/11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | >>
「Google App Engine」カテゴリーの記事一覧
HOME | 戻る
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
@Api(name = "hoge")public class GameService{ @ApiMethod(name = "game.get") public Game getGame(String gameId){ Key gameKey = Datastore.createKey(Game.class,gameId); return Datastore.getOrNullWithoutTx(Game.class,gameKey); }}