SpringMVC中@RequestMapping注解用法实例

作者:木水Code 时间:2022-02-26 11:22:58 

1 修饰类和方法

package site.exciter.springmvc.handlers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@RequestMapping("/springmvc")
@Controller
public class SpringMVCTest {

/**
    * 1. @RequestMapping 除了修饰方法, 还可来修饰类
    * 2.
    * 1). 类定义处: 提供初步的请求映射信息。相对于 WEB 应用的根目录
    * 2). 方法处: 提供进一步的细分映射信息。 相对于类定义处的 URL。若类定义处未标注 @RequestMapping,则方法处标记的 URL
    * 相对于 WEB 应用的根目录
    */
   @RequestMapping("/testRequestMapping")
   public String testRequestMapping() {
       System.out.println("testRequestMapping");
       return "success";
   }
}

2 value

@RequestMapping("/springmvc")可以改为@RequestMapping(value = "springmvc")

3 method

post请求

controller

/**
* method比较常用,用来指定请求方式
* @return
*/
@RequestMapping(value = "testMethod", method = RequestMethod.POST)
   public String testMethod() {
       System.out.println("testMethod");
       return "success";
   }

jsp

<form action="/springmvc/testMethod" method="post">
   <input type="submit" value="submit">
</form>

4 params和headers

/**
    * 可以使用 params 和 headers 来更加精确的映射请求. params 和 headers 支持简单的表达式.
    *
    * @return
    */
   @RequestMapping(value = "testPramsAndHeaders",
           params = {"username", "age!=10"}, headers = {})
   public String testPramsAndHeaders() {
       System.out.println("testPramsAndHeaders");
       return "success";
   }
<a href="/springmvc/testPramsAndHeaders?username=exciter&age=10" rel="external nofollow" >testPramsAndHeaders</a>

当age=10时,访问会出错;当age为其他值时,正常访问。

http://localhost:8080/springmvc/testPramsAndHeaders?username=exciter&age=10

SpringMVC中@RequestMapping注解用法实例

5 Ant路径

/**
    * 通配符 Ant风格,*可以是任何内容
    *
    * @return
    */
   @RequestMapping("/testAntPath/*/exciter")
   public String testAndPath() {
       System.out.println("testAndPath");
       return "success";
   }
&lt;a href="/springmvc/testAntPath/ww/exciter" rel="external nofollow" &gt;testAntPath&lt;/a&gt;

5 @PathVariable

/**
    * @PathVariable 可以来映射 URL 中的占位符到目标方法的参数中
    */
   @RequestMapping("/testPathVariable/{id}")
   public String testPathVariable(@PathVariable("id") Integer id) {
       System.out.println("testPathVariable:" + id);
       return "success";
   }
&lt;a href="/springmvc/testPathVariable/1" rel="external nofollow" &gt;testPathVariable&lt;/a&gt;

6 HiddenHttpMethodFilter

HiddenHttpMethodFilter:浏览器 form 表单只支持 GET、POST、HEAD 请求,而DELETE、PUT 等 method 并不支 持,Spring3.0 添加了一个过滤器,可以将这些请求转换为标准的 http 方法,使得支持 GET、POST、PUT 与DELETE 请求。

web.xml中配置HiddenHttpMethodFilter

<!--  配置org.springframework.web.filter.HiddenHttpMethodFilter,可以把 POST 请求转为 DELETE 或 PUT 请求   -->
   <filter>
       <filter-name>HiddenHttpMethodFilter</filter-name>
       <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
   </filter>

<filter-mapping>
       <filter-name>HiddenHttpMethodFilter</filter-name>
       <url-pattern>/*</url-pattern>
   </filter-mapping>
@RequestMapping(value = "/testRest/{id}", method = RequestMethod.GET)
   public String testRestGet(@PathVariable("id") Integer id) {
       System.out.println("testRestGet:" + id);
       return "success";
   }

@RequestMapping(value = "/testRest", method = RequestMethod.POST)
   public String testRestPost() {
       System.out.println("testRestPost");
       return "success";
   }

@RequestMapping(value = "/testRest/{id}", method = RequestMethod.PUT)
   public String testRestPut(@PathVariable Integer id) {
       System.out.println("testRestPut:" + id);
       return "success";
   }

/**
    * Rest 风格的 URL. 以 CRUD 为例: 新增: /order POST 修改: /order/1 PUT update?id=1 获取:
    * /order/1 GET get?id=1 删除: /order/1 DELETE delete?id=1
    * <p>
    * 如何发送 PUT 请求和 DELETE 请求呢 ? 1. 需要配置 HiddenHttpMethodFilter 2. 需要发送 POST 请求
    * 3. 需要在发送 POST 请求时携带一个 name="_method" 的隐藏域, 值为 DELETE 或 PUT
    * <p>
    * 在 SpringMVC 的目标方法中如何得到 id 呢? 使用 @PathVariable 注解
    */
   @RequestMapping(value = "/testRest/{id}", method = RequestMethod.DELETE)
   public String testRestDelete(@PathVariable Integer id) {
       System.out.println("testRestDelete:" + id);
       return "success";
   }
<a href="/springmvc/testRest/1" rel="external nofollow" >
   <button>TestRest GET</button>
</a>
<form action="/springmvc/testRest" method="post">
   <input type="submit" value="TestRest POST">
</form>
<form action="/springmvc/testRest/1" method="post">
   <input type="hidden" name="_method" value="PUT">
   <input type="submit" value="TestRest PUT">
</form>
<form action="/springmvc/testRest/1" method="post">
   <input type="hidden" name="_method" value="DELETE">
   <input type="submit" value="TestRest DELETE">
</form>

注意: 在Tomcat8.0以上请求完接口之后返回页会报错:

HTTP状态 405 - 方法不允许
类型 状态报告

消息 JSP 只允许 GET、POST 或 HEAD。Jasper 还允许 OPTIONS

描述 请求行中接收的方法由源服务器知道,但目标资源不支持

临时解决方案:在返回的jsp中添加isErrorPage="true"

<%@ page contentType="text/html;charset=UTF-8" language="java" isErrorPage="true" %>

7 @RequestParam

/**
    * @RequestParam 来映射请求参数
    * value 值即请求参数的参数名
    * required 该参数是否必须. 默认为 true
    * defaultValue 请求参数的默认值
    */
   @RequestMapping("/testRequestParam")
   public String testRequestParam(@RequestParam(value = "username") String username,
                                  @RequestParam(value = "age", required = false, defaultValue = "0") int age) {
       System.out.println("testRequestParam: username=" + username + "  age=" + age);
       return "success";
   }
<a href="/springmvc/testRequestParam?username=exciter&age=20" rel="external nofollow"  rel="external nofollow" >testRequestParam</a>

8 @RequestHeader

/**
    * 映射请求头信息 用法同 @RequestParam
    */
@RequestMapping("/testRequestHeader")
   public String testRequestHeader(@RequestHeader(value = "Accept-Language") String al) {
       System.out.println("testRequestHeader:" + al);
       return "success";
   }
<a href="/springmvc/testRequestParam?username=exciter&age=20" rel="external nofollow"  rel="external nofollow" >testRequestParam</a>

9 @CookieValue

@RequestMapping("/testCookieValue")
   public String testCookieValue(@CookieValue(value = "JSESSIONID") String sessionId) {
       System.out.println("testCookieValue:" + sessionId);
       return "success";
   }

来源:https://juejin.cn/post/7111641934996701221

标签:springmvc,@requestmapping
0
投稿

猜你喜欢

  • JVM致命错误日志详解(最新推荐)

    2023-08-22 07:42:30
  • 基于SpringCloudGateway实现微服务网关的方式

    2021-12-02 04:33:04
  • Android实现老虎机小游戏代码示例

    2022-08-04 04:15:11
  • 浅析JAVA中的内存结构、重载、this与继承

    2023-09-24 19:15:07
  • java使用poi读取ppt文件和poi读取excel、word示例

    2022-09-08 04:55:23
  • SpringBoot中如何对actuator进行关闭

    2022-11-30 01:56:37
  • Android如何通过手机自动获取短信验证码

    2022-12-10 00:19:47
  • C++实现扫雷游戏示例讲解

    2022-05-03 18:49:05
  • Kotlin协程之Flow异常示例处理

    2022-10-02 09:30:58
  • Mybatis多表关联查询的实现(DEMO)

    2022-05-03 14:50:03
  • Gradle的使用教程详解

    2022-08-12 05:02:11
  • Android通过AIDL在两个APP之间Service通信

    2022-04-15 23:58:27
  • Android 用HttpURLConnection访问网络的方法

    2023-05-18 17:33:01
  • MyBatis测试报错:Cannot determine value type from string 'xxx'的解决办法

    2023-03-26 07:19:46
  • 25个最好的免费Eclipse插件

    2021-09-21 10:56:24
  • c#中分割字符串的几种方法

    2023-04-11 16:04:30
  • 详解Java的TCP/IP编程学习--基于定界符的成帧

    2023-11-23 03:02:32
  • C#实现汉字转拼音或转拼音首字母的方法

    2022-10-22 17:26:01
  • JavaWeb中Servlet的深入讲解

    2022-03-07 21:12:36
  • c# wpf如何附加依赖项属性

    2023-01-09 05:05:56
  • asp之家 软件编程 m.aspxhome.com