当前位置:网站首页>@pathvariable 和 @Requestparam的详细区别
@pathvariable 和 @Requestparam的详细区别
2022-07-07 00:41:00 【码农研究僧】
前言
使用springboot项目的时候,经常看到这两个注解的在项目中的混用
对于springboot的基础知识点可看我之前的文章:
springboot从入门到精通(全)
今天详细分析下@pathvariable 和 @Requestparam
(都归属spring注解)
- @PathVariable:/manongyanjiuseng/18
- @RequestParam:/manongyanjiuseng?age=18
区别在于一个是用?
,一个使用/
进行传输数据
这种格式类似:RESTFul从入门到精通超全解析(全)
1. 源码解析
查看@pathvariable注解的源码:
@Target({
ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PathVariable {
@AliasFor("name")
String value() default "";
@AliasFor("value")
String name() default "";
boolean required() default true;
}
查看@Requestparam注解的源码:
@Target({
ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RequestParam {
@AliasFor("name")
String value() default "";
@AliasFor("value")
String name() default "";
boolean required() default true;
String defaultValue() default "\n\t\t\n\t\t\n\ue000\ue001\ue002\n\t\t\t\t\n";
}
对比两者的源码
@Requestparam 比 @pathvariable多了一个参数String defaultValue()
大致意思:如果请求体中没有对应的参数变量,使用default对该参数变量赋值,赋上默认值
@pathvariable 和 @Requestparam 这两个注解一般配合如下注解进行联动:
@GetMapping、@PostMapping 和 @RequestMapping详细区别附实战代码(全)
总的来说:
@pathvariable 接收url路径上的参数
@RequestParam 接收参数请求的params
对于源码中的其他参数讲解:
- @Target 作用于参数中
- @Retention作用是定义被它所注解的注解保留多久,RetentionPolicy.RUNTIME注解不仅被保存到class文件中,jvm加载class文件之后,仍然存在
- @Documented,生成javadoc的时候就会把@Documented注解给显示出来,但其实也没啥用处,一个标识而已
2. 实战讲解
以上两个注解都要配合请求体的参数
@PathVariable
注解
@GetMapping ("/manongyanjiuseng/{age}")
@ResponseBody
public String xx( @PathVariable ( "age" ) String age)
@Requestparam
注解
@RGetMapping ("/manongyanjiuseng")
@ResponseBody
public String xx( @RequestParam ( "age" ) String age)
具体的传参如下:
- @PathVariable:/manongyanjiuseng/18
- @RequestParam:/manongyanjiuseng?age=18
边栏推荐
- 往图片添加椒盐噪声或高斯噪声
- 【FPGA教程案例14】基于vivado核的FIR滤波器设计与实现
- JVM the truth you need to know
- Différenciation et introduction des services groupés, distribués et microservices
- [cloud native] what is the microservice architecture?
- 架构设计的五个核心要素
- Senior programmers must know and master. This article explains in detail the principle of MySQL master-slave synchronization, and recommends collecting
- SQLSTATE[HY000][1130] Host ‘host. docker. internal‘ is not allowed to connect to this MySQL server
- Message queuing: how to ensure that messages are not lost
- Pytorch builds neural network to predict temperature
猜你喜欢
Web Authentication API兼容版本信息
Message queue: how to deal with message backlog?
《ClickHouse原理解析与应用实践》读书笔记(6)
数字IC面试总结(大厂面试经验分享)
Determine whether the file is a DICOM file
C nullable type
老板总问我进展,是不信任我吗?(你觉得呢)
数据中心为什么需要一套基础设施可视化管理系统
ML之shap:基于adult人口普查收入二分类预测数据集(预测年收入是否超过50k)利用shap决策图结合LightGBM模型实现异常值检测案例之详细攻略
绕过open_basedir
随机推荐
Flask 1.1.4 werkzeug1.0.1 analyse du code source: processus de démarrage
Polynomial locus of order 5
PTA ladder game exercise set l2-002 linked list de duplication
linear regression
【日常训练--腾讯精选50】292. Nim 游戏
谈fpga和asic的区别
Bat instruction processing details
Reading notes of Clickhouse principle analysis and Application Practice (6)
Flask1.1.4 werkzeug1.0.1 source code analysis: start the process
Type de texte de commutation d'entrée et de mot de passe de l'applet natif
原生小程序 之 input切換 text與password類型
Go语学习笔记 - gorm使用 - 原生sql、命名参数、Rows、ToSQL | Web框架Gin(九)
Add salt and pepper noise or Gaussian noise to the picture
R语言【逻辑控制】【数学运算】
【日常训练--腾讯精选50】235. 二叉搜索树的最近公共祖先
Input of native applet switches between text and password types
Senior programmers must know and master. This article explains in detail the principle of MySQL master-slave synchronization, and recommends collecting
《HarmonyOS实战—入门到开发,浅析原子化服务》
[solved] record an error in easyexcel [when reading the XLS file, no error will be reported when reading the whole table, and an error will be reported when reading the specified sheet name]
Explication contextuelle du langage Go