博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC(三):@RequestMapping中的URL中设定通配符,可以使用@PathVariable映射URL绑定的占位符...
阅读量:6621 次
发布时间:2019-06-25

本文共 841 字,大约阅读时间需要 2 分钟。

1)带占位符的URL是Spring3.0新增的功能,该功能在SpringMVC向REST目标挺进发展过程中具有里程碑的意义。

2)通过@PathVariable可以将URL中占位符参数绑定到控制器处理方法的入参中:URL中的{

xxx}占位符可以通过@PathVariable("xxx")绑定到操作方法的入参中。

 在HelloWord.java中添加testPathVariable方法:

package com.dx.springlearn.handlers;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;@Controller@RequestMapping("class_requestmapping")public class HelloWord {    private static String SUCCESS = "success";    @RequestMapping("/testPathVariable/{id}")    public String testPathVariable(@PathVariable(value = "id", required = true) Integer id) {        System.out.println("testPathVariable: id: " + id);        return SUCCESS;    }}

index.jsp添加链接:

 

转载地址:http://dgcpo.baihongyu.com/

你可能感兴趣的文章
STL源码分析-iterator(迭代器)
查看>>
【推导】【模拟】AtCoder Regular Contest 082 F - Sandglass
查看>>
Jetty和tomcat的比较
查看>>
HDU 6048 - Puzzle | 2017 Multi-University Training Contest 2
查看>>
Apache Kafka 0.9消费者客户端
查看>>
选择符
查看>>
【CodeForces】925 C.Big Secret 异或
查看>>
【游记】CTSC&APIO2017
查看>>
[旧博客]Python 第一天总结
查看>>
Codeforces Round #408 (Div. 2)
查看>>
java-面向对象之类、对象
查看>>
php将字符串转为二进制数据串
查看>>
java 8 常用功能实践整理
查看>>
团队项目开发
查看>>
bs4常用用法
查看>>
[iOS]iPhone进行真机测试(基础版)
查看>>
5.9 定位流
查看>>
玩转vim之vim插件-cscope
查看>>
win10下git用户账号删除更换
查看>>
使用Ant Design的select组件时placeholder不生效/不起作用的解决办法
查看>>