程序员人生 网站导航

SpringMVC各种参数的绑定

栏目:php教程时间:2016-07-04 11:25:06

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

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

表单代码:

<form action="saysth.do" method="post"> <input name="count" value="10" type="text"/> ......
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐