Answers:
@PathVariable
是从URI(Spring称为URI模板)中获取一些占位符—请参见Spring参考第16.3.2.2章URI模板模式@RequestParam
也是要从URI中获取参数-请参见Spring Reference第16.3.3.3章,使用@RequestParam将请求参数绑定到方法参数如果该网址http://localhost:8080/MyApp/user/1234/invoices?date=12-05-2013
在2013年12月5日获得了用户1234的发票,则控制器方法如下所示:
@RequestMapping(value="/user/{userId}/invoices", method = RequestMethod.GET)
public List<Invoice> listUsersInvoices(
@PathVariable("userId") int user,
@RequestParam(value = "date", required = false) Date dateOrNull) {
...
}
同样,请求参数可以是可选的,从Spring 4.3.3开始,路径变量也可以是可选的。但是请注意,这可能会更改URL路径层次结构并引入请求映射冲突。例如,将为/user/invoices
用户提供发票null
或ID为“发票”的用户详细信息吗?
@PathParam
仅当uri模板中有占位符时才有效)
@PathParam
是javax.ws.rs批注。docs.oracle.com/javaee/7/api/javax/ws/rs/PathParam.html
@RequestParam批注用于访问请求中的查询参数值。查看以下请求URL:
http://localhost:8080/springmvc/hello/101?param1=10¶m2=20
在上述网址请求中,可以按以下方式访问param1和param2的值:
public String getDetails(
@RequestParam(value="param1", required=true) String param1,
@RequestParam(value="param2", required=false) String param2){
...
}
以下是@RequestParam批注支持的参数列表:
@PathVariable
@ PathVariable标识在URI中用于传入请求的模式。让我们看下面的请求URL:
http:// localhost:8080 / springmvc / hello / 101?param1 = 10&param2 = 20
上面的URL请求可以在您的Spring MVC中编写,如下所示:
@RequestMapping("/hello/{id}") public String getDetails(@PathVariable(value="id") String id,
@RequestParam(value="param1", required=true) String param1,
@RequestParam(value="param2", required=false) String param2){
.......
}
@ PathVariable批注仅具有一个用于绑定请求URI模板的属性值。允许在单个方法中使用多个@ PathVariable批注。但是,请确保不止一种方法具有相同的模式。
另外还有一个有趣的注释: @MatrixVariable
和它的Controller方法
@RequestMapping(value = "/{stocks}", method = RequestMethod.GET)
public String showPortfolioValues(@MatrixVariable Map<String, List<String>> matrixVars, Model model) {
logger.info("Storing {} Values which are: {}", new Object[] { matrixVars.size(), matrixVars });
List<List<String>> outlist = map2List(matrixVars);
model.addAttribute("stocks", outlist);
return "stocks";
}
但是您必须启用:
<mvc:annotation-driven enableMatrixVariables="true" >
userName
是否具有类型参数?我倾向于使其成为变量,但它也可能是一个参数。
@PathParam
并且@RequestParam
不用声明就可以宣布@RequestMapping
@RequestParam用于查询参数(静态值),例如:http:// localhost:8080 / calculation / pow?base = 2&ext = 4
@PathVariable用于动态值,例如:http:// localhost:8080 / calculation / sqrt / 8
@RequestMapping(value="/pow", method=RequestMethod.GET)
public int pow(@RequestParam(value="base") int base1, @RequestParam(value="ext") int ext1){
int pow = (int) Math.pow(base1, ext1);
return pow;
}
@RequestMapping("/sqrt/{num}")
public double sqrt(@PathVariable(value="num") int num1){
double sqrtnum=Math.sqrt(num1);
return sqrtnum;
}
1)@RequestParam
用于提取查询参数
http://localhost:3000/api/group/test?id=4
@GetMapping("/group/test")
public ResponseEntity<?> test(@RequestParam Long id) {
System.out.println("This is test");
return ResponseEntity.ok().body(id);
}
while @PathVariable
用于直接从URI提取数据:
http://localhost:3000/api/group/test/4
@GetMapping("/group/test/{id}")
public ResponseEntity<?> test(@PathVariable Long id) {
System.out.println("This is test");
return ResponseEntity.ok().body(id);
}
2)@RequestParam
在传统的Web应用程序上更有用,在传统的Web应用程序中,数据大多在查询参数中传递,而@PathVariable
更适合URL包含值的RESTful Web服务。
3)如果属性不存在,则@RequestParam
注释可以使用属性指定默认值(如果查询参数不存在或为空defaultValue
)false
:
@RestController
@RequestMapping("/home")
public class IndexController {
@RequestMapping(value = "/name")
String getName(@RequestParam(value = "person", defaultValue = "John") String personName) {
return "Required element of request param";
}
}
@PathVariable - must be placed in the endpoint uri and access the query parameter value from the request
@RequestParam - must be passed as method parameter (optional based on the required property)
http://localhost:8080/employee/call/7865467
@RequestMapping(value=“/call/{callId}", method = RequestMethod.GET)
public List<Calls> getAgentCallById(
@PathVariable(“callId") int callId,
@RequestParam(value = “status", required = false) String callStatus) {
}
http://localhost:8080/app/call/7865467?status=Cancelled
@RequestMapping(value=“/call/{callId}", method = RequestMethod.GET)
public List<Calls> getAgentCallById(
@PathVariable(“callId") int callId,
@RequestParam(value = “status", required = true) String callStatus) {
}
这两个注释的行为完全相同。
仅2个特殊字符“!” 注释@PathVariable和@RequestParam接受“和”。
为了检查并确认行为,我创建了一个仅包含1个控制器的spring boot应用程序。
@RestController
public class Controller
{
@GetMapping("/pvar/{pdata}")
public @ResponseBody String testPathVariable(@PathVariable(name="pdata") String pathdata)
{
return pathdata;
}
@GetMapping("/rpvar")
public @ResponseBody String testRequestParam(@RequestParam("param") String paramdata)
{
return paramdata;
}
}
达到以下要求,我得到了相同的响应:
在两个请求中均收到!@作为答复
可能是application / x-www-form-urlencoded midia类型将space转换为+,并且接收方将通过将+转换为space来解码数据。请查看url以获取更多信息。http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
@PathVariable
可以在任何RequestMethod中使用