コード例 #1
0
 @RequiresPermissions({"categoryWord-get"})
 @RequestMapping(
     method = RequestMethod.GET,
     value = "/getByPotUser/{potUser}",
     headers = "Accept=application/json")
 public @ResponseBody List<CategoryWord> getByPotUser(
     @PathVariable(value = "potUser") String potUser) {
   return categoryWordService.getByPotUser(potUser);
 }