REST 要求と応答メッセージをログに記録する必要があるため、Apache wing RequestHandler を使用しました。そして、ResponseHandler を使用して応答を取得できます。しかし、ハンドラー クラスでリクエストの詳細を取得できません。これについて私を助けてもらえますか?
public class RESTRequestHandler implements org.apache.wink.server.handlers.RequestHandler {
@Override
public void handleRequest(MessageContext context, HandlersChain handlerChain)
throws Throwable {
//Unable to fetch the request details..Issue is here
handlerChain.doChain(context);
}
}
public class RESTResponseHandler implements org.apache.wink.server.handlers.ResponseHandler {
@Override
public void handleResponse(MessageContext context, HandlersChain handlerChain)
throws Throwable {
//Able to get the response details using the below code
SampleResponseObject object=(SampleRespObject) context.getResponseEntity();
}
}