一、SpringMVC获取链接携带的参数:经常看到有的链接是xxxx/1.html,通过SpringMVC也可以达到这种获取,来动态的获取链接携带的参数,使用@PathVariable即可,如:
@RequestMapping("/user_to_update_page/{id}.html") public ModelAndView toUpdate(@PathVariable("id") Integer id) throws Exception { ModelAndView m = new ModelAndView("user/user_to_update_page"); User u = this.userService.getOneById(id); m.addObject("user", u); return m; }
通过${id}和@PathVariable进行数据绑定,即可达到xxxx/1.html的效果
二、关于返回JSON乱码
在RequestMapping后加上produces配置即可解决乱码
@RequestMapping(value="/testDubbo.html",produces="text/html;charset=UTF-8")
时间: 2024-10-09 23:51:53