2
1回目のリクエストでJSON応答を取得します。以降次の要求から私はServerResourceが正常に配線ルートの表現Restlet 200の代わりにHTTPステータスコード204を取得
org.restlet.engine.adapter.ServerAdapter commit
WARNING: A response with an unavailable and potentially non empty entity was returned. Ignoring the entity for resource http://localhost:8888/xyz?abc=def
Applicationクラス
@Override
public Restlet createInboundRoot() {
router = new Router(getContext());
CorsService corsService = new CorsService();
corsService.setAllowedOrigins(new HashSet<String>(Arrays.asList("http://example.com")));
corsService.setAllowedCredentials(true);
getServices().add(corsService);
router.attach("/xyz", XYZ.class);
}
処理し、リターンサーバーリソースを返しているにもかかわらず、このログとHTTPステータスコード204を取得を開始しますJSON表現
public class XYZ extends ServerResource {
private static final Logger logger = Logger.getLogger("API:XyZ");
@Get(":json")
public Representation handleGetRequest() {
..
return API_RESPONSE_JSON_REPRESENTATION_SUCCESS;
}
}