国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > SpringMVC各种参数的绑定

SpringMVC各种参数的绑定

来源:程序员人生   发布时间:2016-07-04 11:25:06 阅读次数:2228次

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

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

表单代码:

<form action="saysth.do" method="post"> <input name="count" value="10" type="text"/> ......
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生