コード例 #1
0
ファイル: OfferController.java プロジェクト: mathivananr/ku
 @RequestMapping(
     value = "/get/searchSuggest",
     method = RequestMethod.GET,
     produces = "application/json")
 public @ResponseBody List<String> searchSuggest(
     final HttpServletRequest request,
     final HttpServletResponse response,
     @RequestParam("query") String label)
     throws KUException {
   log.info("getting labels for :: " + label);
   return offerManager.getSuggestLabels(label);
 }