| 
 
1 
2 
3 
4 
 | 
<input type="checkbox"  name="test" value="1"/>aaa<input type="checkbox"  name="test" value="2"/>bbb<input type="checkbox"  name="test" value="3"/>ccc<input type="hidden" name="test"/> | 
| 
 
1 
2 
3 
4 
5 
6 
7 
 | 
@RequestMapping("/test")private String
 LoginAction(HttpServletRequest request,                           HttpServletResponse
 response,                           @RequestParam(value
 = "username")
 String username,                           @RequestParam(value
 = "password")
 String password,                           @RequestParam(value
 = "test")
 String test,                           @RequestParam(value
 = "yzm")
 String yzm) { | 
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/u010530506/article/details/46818895