0
私のGCPエンドポイントでv2プロジェクトでCollection of POJOSを返すサービスを作成しました。 ListまたはCollectionResponseを返すときに@ApiMethod(name =)が機能しないことに気付きました。GCPエンドポイントv2:コレクションを返すときに@ApiMethod(name =)が機能しない
例以下は:それはこの名前でに公開されるのに対し、私は、私の方法は、名前getCountryListにさらさ持たを除い
@ApiMethod(name = "getCountryList",
httpMethod = ApiMethod.HttpMethod.GET)
public CollectionResponse<Country> getCountryList() {
List<Country> countryList = null;
Connection con = null;
try{
con = DbUtils.getConnection();
countryList = CountryApi.getAll(con);
return CollectionResponse.<Country> builder().setItems(countryList).build();
//......
「collectionresponse_country」
もここで一貫しているopenapi.jsonファイルがあります