当前位置:网站首页>requestparam注解接的收的是什么格式(玄机赋注解)
requestparam注解接的收的是什么格式(玄机赋注解)
2022-08-02 13:19:00 【全栈程序员站长】
大家好,又见面了,我是你们的朋友全栈君。
1、作用:
@RequestParam:将请求参数绑定到你控制器的方法参数上(是springmvc中接收普通参数的注解)
2、语法:
语法:@RequestParam(value=”参数名”,required=”true/false”,defaultValue=””)
value:参数名
required:是否包含该参数,默认为true,表示该请求路径中必须包含该参数,如果不包含就报错。
defaultValue:默认参数值,如果设置了该值,required=true将失效,自动为false,如果没有传该参数,就使用默认值
3、业务处理Controller
@Controller
@RequestMapping("hello")
public class HelloController2 {
/**
* 接收普通请求参数
* http://localhost:8080/hello/show16?name=linuxsir
* url参数中的name必须要和@RequestParam("name")一致
* @return
*/
@RequestMapping("show16")
public ModelAndView test16(@RequestParam("name")String name){
ModelAndView mv = new ModelAndView();
mv.setViewName("hello2");
mv.addObject("msg", "接收普通的请求参数:" + name);
return mv;
}
/**
* 接收普通请求参数
* http://localhost:8080/hello/show17
* url中没有name参数不会报错、有就显示出来
* @return
*/
@RequestMapping("show17")
public ModelAndView test17(@RequestParam(value="name",required=false)String name){
ModelAndView mv = new ModelAndView();
mv.setViewName("hello2");
mv.addObject("msg", "接收普通请求参数:" + name);
return mv;
}
/**
* 接收普通请求参数
* http://localhost:8080/hello/show18?name=998 显示为998
* http://localhost:8080/hello/show18?name 显示为hello
* @return
*/
@RequestMapping("show18")
public ModelAndView test18(@RequestParam(value="name",required=true,defaultValue="hello")String name){
ModelAndView mv = new ModelAndView();
mv.setViewName("hello2");
mv.addObject("msg", "接收普通请求参数:" + name);
return mv;
}
}
4、测试:
参考地址:https://blog.csdn.net/sswqzx/article/details/84195043
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/125420.html原文链接:https://javaforall.cn
边栏推荐
- [C language] Analysis of function recursion (1)
- .Net 5.0 Quick Start Redis
- 【C语言】函数哪些事儿,你真的get到了吗?(2)
- 二叉树的类型、构建、遍历、操作
- 你真的懂单例模式么
- SQL Server 2019 installation error 0 x80004005 service there is no timely response to the start or control request a detailed solution
- Set proxy server (Google+IE) "Recommended Collection"
- 永远退出机器学习界!
- 第48篇-timestamp2参数分析【2022-08-01】
- "Second Uncle" is popular, do you know the basic elements of "exploding" short videos from the media?
猜你喜欢
RISC-V 指令格式和6种基本整数指令
How to create short images and short videos from the media?How to make the click volume reach 10W?
为什么IDEA连接mysql Unable to resolve table 编译报错但是可以运行
吾爱第三课-修改版权和资源
In-depth analysis and use of Ribbon load balancing
C语言结构体(入门)
wx-wow(微信小程序动效库)
基于华为eNSP的企业网络规划
WeChat applet getPhoneNumber interface code=40013
【C语言】剖析函数递归(2)
随机推荐
Flashback Technology of Oracle Database
Closures in JS
Article 48 - Analysis of timestamp2 parameters【2022-08-01】
百日刷题计划 ———— DAY1
【622. 设计循环队列】
水平垂直居中方式
tinymce-plugins
暑假集训-week2图论
RESTful 风格(详细介绍 + 案例实现)
RestTemplate use: set request header, request body
wait() ,notify(),notifyAll()以及wait()与sleep()比较
package.json and package-lock.json
图论之Kruskal,最小生成树如何优雅解题?
This binding to detailed answers
Openlayers Quick Start Tutorial
Wireless vibrating wire acquisition instrument remote modification method
Summer training camp-week2 graph theory
为什么IDEA连接mysql Unable to resolve table 编译报错但是可以运行
网络流详解(流网图一般能够反映什么信息)
js array recursively use