今天使用springMVC的数据验证的时候,看似很简单的东西,却有一个很大的陷阱:提交空表单的时候总是出现404错误,但是后台却不给你报任何错。遇到这个错误这个很苦恼,搞了几小时,今天记录并分享一下解决经验(本人使用注解式的数据验证): 错误例子:@RequestMapping(value="...
分类:
编程语言 时间:
2015-03-06 20:44:02
阅读次数:
187
@RequestMapping(method=RequestMethod.GET) public ModelAndView allUsers(@RequestParam int page){ ModelAndView mav = new ModelAndView(); ...
分类:
编程语言 时间:
2015-03-06 18:57:30
阅读次数:
2321
@ResponseBody @RequestMapping(value="/ip", method=RequestMethod.GET) public String getIP(HttpServletRequest request, HttpServletResponse res...
分类:
编程语言 时间:
2015-03-06 18:51:08
阅读次数:
162
@RequestMapping(value="/del/{id}") public String delUser(@PathVariable int id){ return "redirect:/user"; }直接返回redirect:/user,就可以返回到user页面...
分类:
编程语言 时间:
2015-03-06 18:37:05
阅读次数:
205
1、自动注入Model参数,对model变量添加属性。@Controller@RequestMapping("user")public class UserController { @RequestMapping(method=RequestMethod.GET) public ...
分类:
编程语言 时间:
2015-03-06 17:03:21
阅读次数:
253
1、在lib中加入jackson.jar包2、在请求函数上进行标注返回类型 @RequestMapping(value="/json",method=RequestMethod.GET, produces="application/json;charset=UTF-8") public ...
分类:
编程语言 时间:
2015-03-06 16:59:13
阅读次数:
151
@RequestMapping(value="/{id}/{name}", method=RequestMethod.GET) public ModelAndView getUrlVariable(@PathVariable int id, @PathVariable String name)...
分类:
编程语言 时间:
2015-03-06 16:48:08
阅读次数:
154
1,spring配置文件添加文件上传配置 2,html 上传 3,controller 1 @RequestMapping(value = ...
分类:
编程语言 时间:
2015-03-05 16:24:39
阅读次数:
201
spring mvc处理方法支持如下的返回方式:ModelAndView, Model, ModelMap, Map,View, String, void。下面将对具体的一一进行说明:ModeAndView: @RequestMapping("/show1") public ModelAndV...
分类:
编程语言 时间:
2015-03-05 14:37:29
阅读次数:
245
@RequestMapping public void download(HttpServletRequest request, HttpServletResponse response) throws Exception { response....
分类:
编程语言 时间:
2015-03-05 14:15:53
阅读次数:
142