码迷,mamicode.com
首页 > 编程语言 > 详细

springMvc学习-day02

时间:2018-04-10 15:17:35      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:springMvc

Spring MVC 使用 @RequestMapping 注解为控制器指定可 以处理哪些 URL 请求

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

@RequestMapping 的 value、method、params 及 heads 分别表示请求 URL、请求方法、请求参数及请求头的映射条 件

/**
     * 使用method属性指定请求方式 (常用), value指定请求的URL
     */
    @RequestMapping(value="/testMethod" , method=RequestMethod.POST)
    public String testMethod() {
        System.out.println("testMethod...");
        return SUCCESS;
    }

@PathVariable 映射 URL 绑定的占位符

/**
     * @PathVariable() 可以来映射 URL 中的占位符到目标方法的参数中
     * @param id
     * @return
     */
    @RequestMapping("/testPathVariable/{id}")
    public String testPathVariable(@PathVariable("id") Integer id) {
        System.out.println("testPathVariable: " + id);
        return SUCCESS;
    }

浏览器 form 表单只支持 GET与 POST 请求,而DELETE、PUT 等 method 并不支持,通过 HiddenHttpMethodFilter可以将这些请求转换为标准的http方法,达到支持DELETE、PUT的目的,需要注意的是:
测试 HiddenHttpMethodFilter 需使用 Tomcat 7.0 不能使用Tomcat 8.0

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

    @RequestMapping(value = "/testRest/{id}", method = RequestMethod.DELETE)
    public String testRestDelete(@PathVariable Integer id) {
        System.out.println("testRest Delete: " + id);
        return SUCCESS;
    }

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

    @RequestMapping(value = "/testRest/{id}", method = RequestMethod.GET)
    public String testRest(@PathVariable Integer id) {
        System.out.println("testRest GET: " + id);
        return SUCCESS;
    }
<!-- 配置 org.springframework.web.filter.HiddenHttpMethodFilter: 可以把 POST 请求转换为DELETE 或 POST 请求 -->
    <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>

springMvc学习-day02

标签:springMvc

原文地址:http://blog.51cto.com/13416247/2096452

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!