Springmvc@Pathvariable

你能给我一个简短的解释和一个例子在使用 @PathVariable在春季 mvc?请包括你如何输入网址?
我正在努力获得显示 jsp 页面的正确 URL。

227349 次浏览

假设您想写一个 url 来获取一些订单,您可以说

www.mydomain.com/order/123

123是 orderId。

So now the url you will use in spring mvc controller would look like

/order/{orderId}

现在订单 id 可以声明为路径变量

@RequestMapping(value = " /order/{orderId}", method=RequestMethod.GET)
public String getOrder(@PathVariable String orderId){
//fetch order
}

如果你使用 url www.mydomain.com/order/123,那么 orderId 变量将由 spring 的值123填充

还要注意,PathVariable 不同于 requestParam,因为 PathVariable 是 URL 的一部分。 The same url using request param would look like www.mydomain.com/order?orderId=123

API DOC
春季官方参考文献

看一下下面的代码片段。

@RequestMapping(value="/Add/{type}")
public ModelAndView addForm(@PathVariable String type) {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("addContent");
modelAndView.addObject("typelist", contentPropertyDAO.getType() );
modelAndView.addObject("property", contentPropertyDAO.get(type,0) );
return modelAndView;
}

希望它有助于构造您的代码。

看看下面的代码片段。

@RequestMapping(value = "edit.htm", method = RequestMethod.GET)
public ModelAndView edit(@RequestParam("id") String id) throws Exception {
ModelMap modelMap = new ModelMap();
modelMap.addAttribute("user", userinfoDao.findById(id));
return new ModelAndView("edit", modelMap);
}

如果你想完整的项目,看看它是如何工作,然后下载从下面的链接:-

GitLab 上的 UserInfo 项目

让我们假设你点击了一个 url 作为 www.example.com/test/111。 现在您必须为控制器方法检索值111(这是动态的)。在此期间,您将按以下方式使用@Pathvariable:

@RequestMapping(value = " /test/{testvalue}", method=RequestMethod.GET)
public void test(@PathVariable String testvalue){
//you can use test value here
}

SO the variable value is retrieved from the url

如果你有带路径变量的 url www.myexampl.com/item/12/update ,例如12是 id,create 是你想用来指定你的执行的变量,例如使用一个单一的表单来执行更新和创建,你可以在你的控制器中执行。

   @PostMapping(value = "/item/{id}/{method}")
public String getForm(@PathVariable("id") String itemId ,
@PathVariable("method") String methodCall , Model model){


if(methodCall.equals("create")){
//logic
}
if(methodCall.equals("update")){
//logic
}


return "path to your form";
}

注释,指示应将方法参数绑定到 URI 模板变量。支持 RequestMapping 带注释的处理程序方法。

@RequestMapping(value = "/download/{documentId}", method = RequestMethod.GET)
public ModelAndView download(@PathVariable int documentId) {
ModelAndView mav = new ModelAndView();
Document document =  documentService.fileDownload(documentId);


mav.addObject("downloadDocument", document);
mav.setViewName("download");


return mav;
}

@PathVariable用于从 URL 获取值

得到一些问题

www.stackoverflow.com/questions/19803731

这里,一些问题 id作为 URL 中的参数传递

现在,要在 controller中获取这个值,只需要在方法参数中传递@Pathvariable 即可

@RequestMapping(value = " /questions/{questionId}", method=RequestMethod.GET)
public String getQuestion(@PathVariable String questionId){
//return question details
}

它是用于映射/处理动态 URI 的注释之一。您甚至可以为 URI 动态参数指定一个正则表达式,以便只接受特定类型的输入。

例如,如果使用唯一编号检索图书的 URL 是:

URL:http://localhost:8080/book/9783827319333

The number denoted at the last of the URL can be fetched using @PathVariable as shown:

@RequestMapping(value="/book/{ISBN}", method= RequestMethod.GET)


public String showBookDetails(@PathVariable("ISBN") String id,


Model model){


model.addAttribute("ISBN", id);


return "bookDetails";


}

简而言之,从 Spring 中的 HTTP 请求中提取数据是另一种方式。