コード例 #1
0
 @RequestMapping(method = RequestMethod.PUT, value = "{id}")
 public Category update(@PathVariable String id, @RequestBody Category category)
     throws CategoryDoesntExistException {
   Category update = categoryService.findOne(Long.valueOf(id));
   update.setName(category.getName());
   return categoryService.save(update);
 }