@RequestMapping("/ufreePlayCount")
@ResponseBody
public void updateFreePlayCount(int famousId,int studentId){
knowledgeService.updateFreePlayCount(famousId, studentId);
}
POST http://www.daydays.com/service/wmsfd/knowledge/ufreePlayCount 404 (Not Found)
spring mvc void 的方法必须加@ResponseBody 否则出现找不到URL异常 或者return 一个值 总之要让spring mvc 知道响应什么。