Controller中获取输入参数注解使用总结
2021/7/15 23:18:03
本文主要是介绍Controller中获取输入参数注解使用总结,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.处理request的uri部分的参数(即restful访问方式):@PathVariable.
当使用restful访问方式时, 即 someUrl/{paramId}, 这时的参数可通过 @Pathvariable注解来获取。
调用方式(get方法):http://localhost:4005/***/cxhdlb/111111
接收参数代码:
Java代码- @RequestMapping(value = "/cxhdlb/{param}", method = RequestMethod.GET)
- public List<String> findEventList(@PathVariable String param) {
- System.out.println(param);
- }
2.处理request header部分的参数:@RequestHeader,@CookieValue
@RequestHeader 注解,可以把Request请求header部分的值绑定到方法的参数上。
这是一个Request 的header部分:
Java代码- Host localhost:8080
- Accept text/html,application/xhtml+xml,application/xml;q=0.9
- Accept-Language fr,en-gb;q=0.7,en;q=0.3
- Accept-Encoding gzip,deflate
- Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
- Keep-Alive 300
接收参数代码:
Java代码- @RequestMapping("/displayHeaderInfo.do")
- public void displayHeaderInfo(@RequestHeader("Accept-Encoding") String encoding,
- @RequestHeader("Keep-Alive") long keepAlive) {
- //...
- }
上面的代码,把request header部分的 Accept-Encoding的值,绑定到参数encoding上了, Keep-Alive header的值绑定到参数keepAlive上。
@CookieValue 可以把Request header中关于cookie的值绑定到方法的参数上。
例如有如下Cookie值:
Java代码- JSESSIONID=415A4AC178C59DACE0B2C9CA727CDD84
接收参数代码:
Java代码- @RequestMapping("/displayHeaderInfo.do")
- public void displayHeaderInfo(@CookieValue("JSESSIONID") String cookie) {
- //...
- }
即把JSESSIONID的值绑定到参数cookie上。
3.处理request body部分的注解:@RequestParam,@RequestBody,@Validated
@RequestParam注解用来接收地址中的参数,参数的格式是http://*****?uid=111111&uname=张三。
接收参数代码:
Java代码- @Controller
- @RequestMapping("/users")
- public class UserController{
- @RequestMapping(value = "/hqyhxx",method = RequestMethod.GET)
- public String getUserInfo(@RequestParam("uid") String uid,@RequestParam("uname") String uname) {
- //...
- }
- }
@Validated注解可以用一个模型来接收地址栏中的参数,参数的格式是http://*****?uid=111111&uname=张三。
接收参数代码:
Java代码- @Controller
- @RequestMapping("/users")
- public class UserController{
- @RequestMapping(value = "/hqyhxx",method = RequestMethod.GET)
- public String getUserInfo(@Validated User user) {
- String uid = user.getUid();
- String uname = user.getUname();
- }
- }
@RequestBody注解用来接收request的body中的参数(可以接收json格式的数据)。
接收参数代码:
Java代码- @RequestMapping(value = "/cjhd", method = RequestMethod.POST)
- public Result createEvent(@RequestBody ParameterModel parameterModel, HttpServletRequest request,
- HttpServletResponse response) {
- String rowkey = parameterModel.getRowkey();
- }
这篇关于Controller中获取输入参数注解使用总结的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-02在 Objective-C 中strong 和 retain有什么区别-icode9专业技术文章分享
- 2024-11-02NSString 中的 hasPrefix 有什么作用-icode9专业技术文章分享
- 2024-11-02在 C 和 Objective-C 中inline的用法是什么-icode9专业技术文章分享
- 2024-11-02文件掩码什么意思?-icode9专业技术文章分享
- 2024-11-02在 Git 提交之前运行 composer cs-fix 命令怎么实现-icode9专业技术文章分享
- 2024-11-02为 Composer 的 cs-fix 命令指定一个目录怎么实现-icode9专业技术文章分享
- 2024-11-02微信公众号开发中怎么获取用户的 unionid-icode9专业技术文章分享
- 2024-11-01lip-sync公司指南:一文读懂主要玩家和技术
- 2024-11-01Anthropic的新RAG方法——提升大型语言模型在特定领域的表现
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享