0
私はRESTサービスでテストしており、HttpServletResponse
オブジェクトを取得する必要があります。HttpServletResponseの取得が安心なサービスで
私はこのような関数を呼び出す:私は欠けている何かが
http://localhost:8080/wsService/api/servicetest/testify
私が手HttpServletResponse
は常に
@Path("/testify")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response Testify(HttpServletResponse response) throws Exception {
try {
return Utilities.getSvc(true, "OK");
} catch (Exception e) {
return Utilities.getSvc(false, "ERROR");
}
}
nullですか?私は最終的にちょうどHttpServletResponse
オブジェクトに@Context
注釈を入れて、HttpServletRequest
パラメータを追加するために必要な、それをやった
を[これ](https://stackoverflow.com/questions/20937362/what-コンテキストアノテーションを使用してオブジェクトを挿入することができます)が役立つ可能性があります。 –