私はジャージークライアントを使用しています。
Client client = Client.create();
client.addFilter(new Myfilter());
// do some other things
および Myfilter クラス
public class Myfilter extends ClientFilter {
public ClientResponse handle(ClientRequest cr) {
System.out.println("called");
ClientResponse resp = getNext().handle(cr);
return resp;
}
}
Myfilter のハンドル メソッドを呼び出すことができません。誰でもこれで私を助けることができますか?