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>
  • 相关阅读:
    郑码
    AutoCAD 安装
    China Mobile 移动
    CCB 建行
    Word基础
    Java 继承
    Java 封装(内部类)
    Java 类与对象
    Java 方法
    Java 数组
  • 原文地址:https://www.cnblogs.com/yuyu666/p/10050011.html
Copyright © 2011-2022 走看看