在mvc结构中,控制器组件主要的功能就是接收请求、处理请求、生成响应,接收客户端传来的请求参数的往往是控制器要做的第一件事。
book实体类book.java
1
2
3
4
5
|
public class book { private integer bookid; private string author; //生成get、set方法,此处省略 } |
一、直接用参数名匹配请求参数
客户端界面(表单):
1
2
3
4
5
|
<form action= "/querystring" method= "post" > <input type= "text" name= "bookid" > <input type= "text" name= "author" > <input type= "submit" value= "提交" > </form> |
controller层:
1
2
3
4
5
6
7
8
9
|
@controller public class parampassdemo { @requestmapping (value= "/querystring" ) public string test1(integer bookid, string author) { system.out.println( "bookid=" +bookid+ ", author=" +author); //此处返回的地址为(/web-inf/jsp/index.jsp) return "index" ; } } |
注意:这里@requestmapping中只有value属性,value可以省略不写。
客户端输入:123,rose
控制台输出:bookid=123, author=rose
二、通过@requestparam注解来指定请求参数的name
客户端界面(表单):
1
2
3
4
5
|
<form action= "/querystringwithspecname" method= "post" > <input type= "text" name= "bookid" value= "321" > <input type= "text" name= "author" value= "jack" > <input type= "submit" value= "提交" > </form> |
如果表单中的字段与方法中的参数名一致,可以不需要@requestparam,spring会自动处理。
controller层:
1
2
3
4
5
6
7
8
|
@controller public class parampassdemo { @requestmapping ( "/querystringwithspecname" ) public string test2((value= "bookid" ,required= false ) integer id, @requestparam ( "author" ) string name) { system.out.println( "bookid=" +id+ ", author=" +name); return "index" ; } } |
注意:这里@requestmapping中有两个属性,value不能省略。
@requestparam将请求地址中的参数传递给目标方法,在处理方法入参处使用可以把请求参数传递给请求方法。
当使用@requestparam注解时,设置客户端传递的请求参数name="bookid"和@requestparam的value值value="bookid"相匹配后,参数名int id可以和请求参数不匹配。
客户端输入:321, jack
控制台输出:bookid=321, author=jack
客户端界面(ajax):
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<button onclick= "clickme()" >点我</button> <script> function clickme() { $.ajax({ type : 'post' , url : "/querystringwithspecname" , data : { "bookid" : 1 , "author" : "jack" }, }); } </script> |
controller层:(不变)
客户端: data:{"author" : "jack"}
控制台输出: bookid=null, author=jack(如果bookid为int类型,控制台会抛出异常)
客户端: data:{"bookid" : 1}
控制台输出: org.springframework.web.bind.missingservletrequestparameterexception: required string parameter 'author' is not present
通过required设置可选参数,required为false时表示可以不带参数,为true时表示必须带参数(默认值为true)。
当可选参数不存在时,spring默认将其赋值为空(null),但由于bookid已定义为基本类型int,所以赋值会失败。解决方法:采用int包装类integer。
三、使用领域对象来接收参数
客户端界面(表单):
1
2
3
4
5
|
<form action= "/querystringwithdomainobj" method= "post" > <input type= "text" name= "bookid" > <input type= "text" name= "author" > <input type= "submit" value= "提交" > </form> |
controller层:
1
2
3
4
5
6
7
8
|
@controller public class parampassdemo { @requestmapping ( "/querystringwithdomainobj" ) public string test3(book book) { system.out.println( "bookid=" +book.getbookid()+ ", author=" +book.getauthor()); return "index" ; } } |
客户端输入:111, bob
控制台输出:bookid=111, author=bob
四、url动态参数传递(路径参数)
客户端界面(超链接):
1
|
<a href= "/book/1" rel= "external nofollow" >testpathvariable</a> |
controller层:
1
2
3
4
5
6
7
8
9
|
@controller public class parampassdemo { //@pathvariable可以用来映射url中的占位符到目标方法的参数中 @requestmapping ( "/book/{bookid}" ) public string test4( @pathvariable ( "bookid" ) integer bookid) { system.out.println( "bookid:" + bookid); return "index" ; } } |
控制台输出:bookid:1
@pathvariable 映射 url 绑定的占位符
通过 @pathvariable 可以将 url 中占位符参数绑定到控制器处理方法的入参中:url 中的 {xxx} 占位符可以通过@pathvariable(“xxx“) 绑定到操作方法的入参中。
五、使用httpservletrequest获取请求参数
客户端界面(表单):
1
2
3
4
5
|
<form action= "/querybook" method= "post" > <input type= "text" name= "bookid" > <input type= "text" name= "author" > <input type= "submit" value= "提交" > </form> |
controller层:
1
2
3
4
5
6
7
8
9
|
@controller public class parampassdemo { @requestmapping ( "/querybook" ) public string test5(httpservletrequest request) { system.out.println( "bookid:" + request.getparameter( "bookid" )); //此处index.jsp界面在web-inf下 return "redirect:/index.jsp" ; } } |
客户端输入:123
控制台输出:用户id:123
六、跳转到另一个controller方法
客户端界面(url地址栏):http://localhost:8080/test6?bookid=321
controller层:
1
2
3
4
5
6
7
8
9
10
|
@controller public class parampassdemo { @requestmapping ( "/test6" ) public string test6(string bookid){ system.out.println( "bookid=" +bookid); //使用服务端跳转的方式转向到另一个controller //return "forward:querybook?bookid="+bookid; return "redirect:queryuser?bookid=" +bookid; } } |
控制台输出:bookid=321 bookid:321
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://segmentfault.com/a/1190000018282239