我正在处理一个java springboot项目和rest api,我需要在其中一个uri中传递参数,当我使用它时,我会遇到“request method GET not supported”错误
//@GetMapping("logs/date?from={from}&to={to}")
@RequestMapping(value="logs/date?from={from}&to={to}",method=RequestMethod.Get)
public list getLogs(@RequestParam(value="from") String from,@RequestParam("to") String to)){....}
当我使用时它工作正常
@RequestMapping(value="logs/date/from={from}&to={to}",method=RequestMethod.Get)
public list getLogs(@PathVariable(value="from") String from,@PathVariable("to") String to)){....}
但我需要url有“?”在传递参数之前,所以当我替换
@RequestMapping(value="logs/date/from={from}&to={to}",method=RequestMethod.Get)
用这个
@RequestMapping(value="logs/date?from={from}&to={to}",method=RequestMethod.Get)
我得到get方法不受支持的错误。
您编写请求映射值的方式不正确。您不需要编写from={from}
@RequestMapping(value=“/logs/date”,method=RequestMethod.GET)公共字符串getLogs(@RequestParam(value=“from”)String from,@RequestParam(“to”)String to)){
现在,您可以使用URL进行API调用
<代码>http://localhost:8080/log/date?from=fromText
我正在编写一个控制器来处理来自AJAX的帖子。我一直收到一个错误,那篇文章不受支持。我以前在尝试创建后控制器方法时从未遇到过以下错误,我希望有人能发现我在哪里搞砸了。 这是我为控制控制器中的帖子而编写的方法: 使用JQuery 1.10,这是请求它的Ajax调用: 我知道POST地址是正确的,因为将它转换成GET请求就可以了。此外,我还编写了其他POST请求,它们在同一个控制器类中也能正常工作。任
login.jsp 用户列表.jsp AppController.java 有2页:login.jsp-起始页,其中包括与登录和密码填充的形式-userlist.jsp结果列表“显示数据库中所有用户持久化”..首先显示登录页面,当我单击提交按钮时,我得到了这个错误:org . spring framework . web . servlet . pagenotfound-不支持请求方法“POST”
我试图在这里输入代码`@RequestMapping(value=“/test”,method=RequestMethod.POST),但错误代码为 网状物xml是 springmvc.xmlindex.jsp I input submit botton brower为错误HTTP Status 405-请求方法'GET'不受支持类型状态报告消息请求方法'GET'不受支持描述指定的HTTP方法不允
下面是我的方法 当调用GET request时,它的工作很好,但是当我们调用POST request和request payload checkout_token=xxxx时,我得到以下错误 编辑 甚至我尝试删除所有参数,但仍然没有运气到目前为止。
我有Java控制器: 并遇到以下问题:警告14068--[nio-8080-exec-3].w.s.m.s.defaultHandlerExceptionResolver:Resolved[org.springframework.web.httpRequestMethodNotSupportedException:Request method'DELETE'not support]它发生在我发送删
我刚刚开始学习Java Spring Boot for REST API开发。在下面的代码中,GET方法可以正常工作,但POST不能。 在Postman应用程序中使用as 错误 在日志中我可以看到, maven的Java和springboot版本,