微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SpringMVC各种参数的绑定

1. 基本数据类型(以int为例,其他类似):
Controller代码

@RequestMapping("saysth.do") public void test(int count) { }

表单代码