ajax 呼び出しを提供する serverresource メソッドがあります。MockResourceRequest と MockResourceResponse を使用して、この serverresource メソッドの単体テストを作成しようとしています。誰かがこれの例を持っている場合、私はこれについて本当に助けが必要です。前もって感謝します..
JSR 286 のサーブ リソース メソッドである ajax 呼び出しを処理するには、以下のコントローラーを参照してください。
[編集]
@Controller
@RequestMapping("VIEW")
public class Controller {
@ResourceMapping(value = "")
public String addMethod(ResourceRequest request, ResourceResponse response){
/* My logic to send the request attributes to Web Service and then push
the results to the JSP page*/
}
}