文章 2023-11-06 来自:开发者社区

SpringMVC中RequestMethod同时支持POST和GET访问

@RequestMapping(value="index",method={RequestMethod.GET,RequestMethod.POST}) public String index(){ return "index.html"; }

问答 2020-06-22 来自:开发者社区

SpringMvc中,RequestMethod可以同时支持POST GET访问么??报错

springmvc中,可以用ReuqestMethod属性来控制 POST 或 GET 方式提交表单 或访问url, //如: 仅GET方式 @RequestMapping(value = "hello",params ="what",method =RequestMethod.GET) //如: 仅POST方式 @RequestMapping(value = "...

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。