SpringMVC RequestMapping 路径中带占位符的URL
Posted 尐鱼儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC RequestMapping 路径中带占位符的URL相关的知识,希望对你有一定的参考价值。
使用方法:在@RequestMapping("/delete/{id}")中,通过{id}带入pathvariable,然后在方法中,通过@PathVariable("变量名称") Iteger id 的方式引入占位符。
控制器代码:
package com.tiekui.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class TestPathVariable { @RequestMapping("/testparam/{id}") public String test(@PathVariable("id") Integer id){ System.out.println(id); return "success"; } }
视图代码:
<a href="testparam/100">Test PathVariable</a>
以上是关于SpringMVC RequestMapping 路径中带占位符的URL的主要内容,如果未能解决你的问题,请参考以下文章
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”