@RequestMapping(method = RequestMethod.POST, value = "stick")
 public String stickyTopic(@RequestParam("stick") Long[] ids) {
   circleService.setStickyTopic(ids);
   return "circle/circleDetail";
 }