1
我正在使用Jersey客戶端。擁有客戶端篩選器的Jersey客戶端
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的處理方法。有人能幫我解決嗎?
我不使用netbeans ... m使用eclipse或任何GUI工具來配置篩選器 –
它不是關於IDE/GUI。這有助於瞭解方法 – TheWhiteRabbit
我創建了過濾器,但你可以告訴如何調用句柄方法 –