SpringMVC(4) RequestMapping 요청 방법

1910 단어
일반적인 Rest API의 Get 및 POST에 대한 테스트 참조 코드는 웹입니다.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은 하이퍼링크를 사용하여 요청을 보낼 수 있습니다.
    
GetMethod
 
전재 대상:https://www.cnblogs.com/zhoutiekui/p/6254370.html

좋은 웹페이지 즐겨찾기