zoukankan      html  css  js  c++  java
  • SpringMVC(四) RequestMapping请求方式

    常见的Rest API的Get和POST的测试参考代码如下,其中web.xml和Springmvc的配置文件参考HelloWorld测试代码中的配置。

    控制类的代码如下:

    复制代码
    package com.tiekui.springmvc.handlers;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;
    
    @Controller
    public class PostGetMethod {
        @RequestMapping(value="/testPostMethod",method=RequestMethod.POST)
        public String testMethod(){
            System.out.println("Hello testPostMethod");
            return "success";
        }
        
        @RequestMapping(value="/testGetMethod",method=RequestMethod.GET)
        public String testGet(){
            System.out.println("Hello testGetMethod");
            return "success";
        }
    }
    复制代码

    视图代码如下,其中POST请求要用form action的方式去提交。Get可以用超链接的方式来发送请求。

        <form action="testPostMethod" method="post">
            <input type="submit" value="PostMethod">
        </form>
        <br>
        <a href="testGetMethod">GetMethod</a>
  • 相关阅读:
    ES6中对象新增方法
    ES6中字符串新增方法
    Laya 吐槽日志.
    汇编与反汇编工具
    Mac 软件下载地址
    红米手机 android4.4.4 root之路
    查看apk安装包信息
    文件搜索
    自动发表QQ空间说说
    批量格式化json
  • 原文地址:https://www.cnblogs.com/yuyu666/p/10050011.html
Copyright © 2011-2022 走看看