SpringMVC RequestMapping请求参数
Posted 尐鱼儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC RequestMapping请求参数相关的知识,希望对你有一定的参考价值。
通过在控制器方法中使用@RequestParam(value="参数名",require=true/false,defaultvalue="")的方式,使在URL中传入参数。
控制器代码:
package com.tiekui.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class RequestParamTest { @RequestMapping("testRequestParam") public String testRequestParam(@RequestParam(value="id",required=false,defaultvalue="10") Integer id){ System.out.println(id); return "success"; } }
视图代码:
<a href="testRequestParam?id=3">TestRequestParam</a>
以上是关于SpringMVC RequestMapping请求参数的主要内容,如果未能解决你的问题,请参考以下文章
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”