1.检查链接地址有没有错误
2.看RequestMethod,是GET,还是POST
Controller
@RequestMapping("/test")
public class TestController extends BaseController {
private static Logger log = LoggerFactory.getLogger(TestController.class);
@ResponseBody
@RequestMapping(value = "/1", method =
RequestMethod.POST)
public String test(){
return "test";
}
3.如果仍没有解决
看web.xml配置:
<servlet-name>SpringMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:config/spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringMVC</servlet-name>
<url-pattern>/inline/*</url-pattern>
</servlet-mapping>
在访问web的根目录下加/inline
post http:localhost:8080/web/inline/test/1
分享到:
相关推荐
当您遇到"405 - HTTP method GET is not supported by this URL"这样的问题时,通常意味着您的服务器端代码没有正确处理GET请求,或者请求被误定向到了一个不期望GET方法的Servlet。 首先,我们需要理解HTTP协议中...
在使用spring cloud feign时,我们可能会遇到org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported的报错,这是因为feign client中的RequestMethod.GET或@...
主要介绍了http请求405错误方法不被允许的解决 (Method not allowed),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
${pageContext.request.contextPath}/resources/js/kindeditor-all-min.js"> ``` 3. **创建编辑器实例**:在JSP页面中,通过JavaScript创建KindEditor实例。通常会为一个特定的HTML元素(如textarea)绑定编辑器...
" method is not supported by this URL"; } response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, errMsg); } } ``` 当HTTP方法不被当前Servlet支持时,如`METHOD_PUT`、`METHOD_DELETE`等,`...
解决方案是,需要正确地配置 POST 请求的方法和参数,例如:@RequestMapping(value="/user/name", method=RequestMethod.POST) User createUser(@RequestBody final User user); 这篇文章总结了一些使用 Feign 时常...
Earlier versions of Delphi and C++ Builder will not be supported. If you need Delphi 3 or C++ Builder 3 support you will have to revert to version 3.7 of the Drag and Drop Component Suite. The ...
Called by the server (via the service method) to allow a servlet to handle a POST request. doPut(HttpServletRequest, HttpServletResponse) - Method in class javax.servlet.http.HttpServlet Called by ...
{"timestamp":1482676142940,"status":405,"error":"MethodNotAllowed","exception":"org.springframework.web.HttpRequestMethodNotSupportedException","message":"Request method 'POST' not supported","path":...
例如,如果请求使用的是`GET`方法但子类未实现`doGet`方法,那么会返回405 Method Not Allowed或者400 Bad Request的错误码。 ##### 4. 示例:doGet方法 下面是一个简化版的`doGet`方法实现示例: ```java ...
405 Method Not Allowed是请求的方法(如GET、POST)不受支持;406 Not Acceptable表示服务器无法生成客户端可接受的响应;407 Proxy Authentication Required需先通过代理服务器认证;408 Request Timeout请求超时...
405(Method Not Allowed)表示请求方法(如GET、POST)不被允许。406(Not Acceptable)说明服务器无法提供满足请求的资源格式。408(Request Timeout)表示服务器等待请求超时。409(Conflict)表示请求与当前资源...
- 405 Method Not Allowed:请求方法不适用于请求的资源,例如GET请求尝试PUT操作。 - 406 Not Acceptable:服务器无法提供与Accept头匹配的资源类型。 - 407 Proxy Authentication Required:客户端需要通过代理...
405 Method Not Allowed表示不支持请求的方法;406 Not Acceptable表示服务器无法生成客户端可接受的响应;407 Proxy Authentication Required要求客户端通过代理进行身份验证;408 Request Timeout表示客户端没有在...
- `405 Method Not Allowed`:请求的方法(如GET、POST)对目标资源不适用。 - `406 Not Acceptable`:服务器无法提供满足客户端Accept头的资源。 - `407 Proxy Authentication Required`:需要通过代理服务器的...
405 Method Not Allowed:请求的方法(如GET、POST)不被服务器支持。 406 Not Acceptable:服务器无法根据客户端的Accept头生成可接受的响应。 407 Proxy Authentication Required:客户端需要先通过代理服务器的...
<param-value>token,Access-Control-Allow-Origin,Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers --> <param-value>Access-Control-Allow-Origin,...
* 405 Method Not Allowed:表示客户端请求的方法不被服务器所允许 * 406 Not Acceptable:服务器无法提供客户端所请求的文档格式 * 407 Proxy Authentication Required:与 401 类似,但是代理服务器需要客户端提供...
- 405 Method Not Allowed:请求的方法不适用于请求的资源。 - 406 Not Acceptable:服务器无法提供与Accept头兼容的资源类型。 - 407 Proxy Authentication Required:客户端需要通过代理服务器进行认证。 - ...
- **405 Method Not Allowed**: 请求行中指定的方法不被允许。 - **406 Not Acceptable**: 服务器无法根据客户端可接受的内容特性及MIME类型,返回合适的实体内容。 - **407 Proxy Authentication Required**: 与401...