@RequestMapping 注解能够处理 HTTP 请求的方法, 比如 GET, PUT, POST, DELETE 以及 PATCH。
常用方式如下写法:
@RequestMapping(method = RequestMethod.GET) String get() { return "from get"; } @RequestMapping(method = RequestMethod.DELETE) String delete() { return "from delete"; } @RequestMapping(method = RequestMethod.POST) String post() { return "from post"; } @RequestMapping(method = RequestMethod.PUT) String put() { return "from put"; }
讯享网
如果接口方法,需要同时支持GET/POST两种请求方式,怎么办呢? 如下写法可以解决:
讯享网@RequestMapping(value = "/test", method = {RequestMethod.GET,RequestMethod.POST}) @ResponseBody public String test(HttpServletRequest request) { //遍历请求参数 Set<Map.Entry<String, String>> set = showParams(request).entrySet(); for (Map.Entry<String,String> entry : set) { if (!entry.getKey().toString().equals("submit")) { log.info("param:{}={}", entry.getKey().toString(), entry.getValue().toString()); } } return "ok"; } private Map showParams(HttpServletRequest request) { Map map = new HashMap(); Enumeration paramNames = request.getParameterNames(); while (paramNames.hasMoreElements()) { String paramName = (String) paramNames.nextElement(); String[] paramValues = request.getParameterValues(paramName); if (paramValues.length == 1) { String paramValue = paramValues[0]; if (paramValue.length() != 0) { map.put(paramName, paramValue); } } } return map; }
关键是这一行:@RequestMapping(value = "/test", method = {RequestMethod.GET,RequestMethod.POST})
https://blog.oxings.com/article/25.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/17206.html