Example #1
0
 @RequestMapping(value = "/Salutation/get", method = RequestMethod.GET)
 public @ResponseBody Salutation getSalutation(
     @RequestParam(value = "id", required = true) Integer id) {
   Salutation salutation = service.get(id);
   return salutation;
 }