81,122
社区成员




@RequestMapping(value = "private", method = RequestMethod.GET)
private Object test() {
return true;
}
@RequestMapping(value = "public", method = RequestMethod.GET)
public Object test() {
return true;
}