Spring MVC出现POST 400 Bad Request &405 Request method 'GET' not supported
首先描述一下出现错误的情景:
我刚学springmvc,想做一个登录界面的东西。然后试着写了一个controller如下:
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String login( String name,
String password, Model model) {
User u = userService.login(name, password);
if (u == null)
throw new UserException("no user exist!");
if (!u.getPassword().equals(password)) {
throw new UserException("password is not right!");
}
model.addAttribute("loginUser", u);
return "redirect:/user/users";
}
然后就出现了 400 badrequest这个错误了。网上找资料,说是属性不匹配吧,于是找jsp页面的错误,没有不匹配的地方,于是添加
log4j.logger.org.springframework.web=debug到log4j日志里面,果然出现错误的地方了。究其原因是
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public String show(@PathVariable int id, Model model) {
model.addAttribute("user", userService.load(id));
return "user/show";
}
因为这个mapping地址localhost:8080/xxx/user/id(int类型)的,
login的mapping地址localhost:8080/xxx/user/login(String类型)的,
所以在dispatch的时候,spring误认为是要去访问show这个方法,就造成了数据类型不匹配,也就是String型无法转变为int类型的错误,也就造成了400 bad request错误了,如此,解决方法就是在show方法的
@RequestMapping(value = "/{id}", method = RequestMethod.GET)改为
@RequestMapping(value = "show/{id}", method = RequestMethod.GET)这样就区别开了。
到此,第一个问题解决。方法是
- 先检查一下数据类型是否匹配。
- 自己检查不到,就用控制台输出一个debug信息,然后查看,Springmvc中
log4j.logger.org.springframework.web=debug到log4j日志里面 - 查看信息,修改即可。
405 Request method ‘GET’ not supported
这个错误,纯属自己的问题了,我也查看了jsp页面提交方法是post,然后controller的方法也是method = RequestMethod.POST,怎么会出现GET请求呢?原来是我直接访问login页面。
我在controller中写了一个方法,将视图转到login页面就解决了
如下:
@RequestMapping(value="",method=RequestMethod.GET)
public String index(){
return "user/login";
}
另,附上我在网上查找资料的时候,别人遇到的一些错误原因:
@Controller
@RequestMapping("/newPost.htm")
public class NewPostController{
@Autowired
PostsBusinessDelegate postsBusinessDelegate = null;
@Autowired
AddNewPostFormBean addNewPostFormBean = null;
@RequestMapping(method=RequestMethod.GET)
public String getCreateForm(Model model) {
model.addAttribute(addNewPostFormBean);
return "/newPost.htm";
}
@RequestMapping(method=RequestMethod.POST)
public String create(AddNewPostFormBean article, BindingResult result, HttpServletRequest request) {
if (result.hasErrors()) {
return "/newPost.htm";
}
postsBusinessDelegate.addNewPost((User) request.getSession().getAttribute("CURRENT_USER"), article);
return "redirect:/index.htm";
}
@RequestMapping(***method=RequestMethod.GET***)
public String getView(Model model) {
AddNewPostFormBean anpfb = this.addNewPostFormBean;
if (anpfb == null) {
return "/newPost.htm";
}
model.addAttribute(anpfb);
return "/newPost.htm";
}
@ExceptionHandler(Exception.class)
public String exception(Throwable t)
{
return "/index.htm";
}
<form:form method="post" >
<form:errors path="*"/>
<p>Title: <form:input path="articleTitle" size="45" maxlength="60"/></p>
<form:select path="categoryId">
<form:option value="Select Category..."></form:option>
<c:forEach items="${sessionScope.CATEGORIES}" var="category" varStatus="index">
<form:option value="${category.categoryId}" label="${category.categoryName}"></form:option>
</c:forEach>
</form:select>
<form:textarea path="articleText" id="editor1"/>
<div class="buttons">
<input type="submit" value="Add Post" />
</div>
</form:form>
这个问题主要出现在有两个GET,不知道映射哪个。controller中create跟getView方法
如有错误,请指出,刚学习springmvc不久。谢谢!
Spring MVC出现POST 400 Bad Request &405 Request method 'GET' not supported的更多相关文章
- Spring Mvc 在非controller层 实现获取request对象
一般我们在Controller层,会编写类似这样的方法 @Controller @RequestMapping(value="/detail") public class GetU ...
- Spring Mvc Http 400 Bad Request问题排查
如果遇到了Spring MVC报错400,而且没有返回任何信息的情况下该如何排查问题? 问题描述 一直都没毛病的接口,今天测试的时候突然报错400 Bad Request,而且Response没有返回 ...
- 戏说 Spring MVC 框架
Spring MVC 是 Spring 框架的一部分,和 Struts 一样都是属于 web 层框架,根据项目分层的思想,一个项目基本可以分为持久层,业务层和 web 层.而 Spring MVC 主 ...
- spring + spring mvc + tomcat 面试题(史上最全)
文章很长,而且持续更新,建议收藏起来,慢慢读! 高并发 发烧友社群:疯狂创客圈(总入口) 奉上以下珍贵的学习资源: 疯狂创客圈 经典图书 : 极致经典 + 社群大片好评 < Java 高并发 三 ...
- Spring Data MongoDB example with Spring MVC 3.2
Spring Data MongoDB example with Spring MVC 3.2 Here is another example web application built with S ...
- spring mvc controller中获取request head内容
spring mvc controller中获取request head内容: @RequestMapping("/{mlid}/{ptn}/{name}") public Str ...
- An overview of the Spring MVC request flow
The Spring MVC request flow in short: When we enter a URL in the browser, the request comes to the d ...
- spring mvc DispatcherServlet详解之三---request通过ModelAndView中获取View实例的过程
整个spring mvc的架构如下图所示: 上篇文件讲解了DispatcherServlet第二步:通过request从Controller获取ModelAndView.现在来讲解第三步:reques ...
- spring mvc DispatcherServlet详解之二---request通过Controller获取ModelAndView过程
整个spring mvc的架构如下图所示: 上篇文件讲解了DispatcherServlet通过request获取控制器Controller的过程,现在来讲解DispatcherServletDisp ...
随机推荐
- openGLES(一)
准备工作 工具安装 jdk安装 sdk安装 IDE开发环境 一个手机 推荐使用真机,它可以反映真实的性能和结果. 虚拟机创建 Android SDK 执行SDK Manager.exe Tools-- ...
- Python 极简教程(五)输入输出
输入函数,用于接收键盘输入.主要用于在学习和练习过程中,增加练习的乐趣.让我们的程序相对完整和具备简单的交互能力. 输出函数,将代码运行结果打印在控制台上,同样也能让我们观察程序运行的结果.也是为了增 ...
- 洛谷 P2025 脑力大人之监听电话
P2025 脑力大人之监听电话 题目背景 画外音: (声明:不要管前面那个,纯属意外,现已经重新编题,绝对原创) 上次海选,我们选出了参赛者中的20%参加本次比赛,现在我们将进行第二轮的筛选,这次的比 ...
- [Web Security] JSON Hijacking
After reading the blog, the main take away from there is: "Never send back JOSN array to the cl ...
- QSYS系统简介
QSYS是SoPC Builder的新一代产品. QSYS系统集成工具自动生成互联逻辑,连接IP和子系统 QSYS的设计理念是提高设计抽象级,从而使机器自动生成底层代码. Altera的Avalon总 ...
- AndroidActivity跳转动画,让你的APP瞬间绚丽起来
我们都知道绚丽的APP总会给用户耳目一新的感觉,为了抓住用户更大网络公司使出浑身解数让自己的产品更绚丽,而绚丽最简单的效果就是Activity跳转效果,不仅能够让用户看起来舒服,并且实现起来也特别简单 ...
- 【例题5-4 UVA - 156】Ananagrams
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 每个字符串如果每个字符按照升序排一下.假设他们能够互相变化. 则肯定是一样的. 根据这个东西,用一个map来判重就好. [错的次数] ...
- stm32的复用与映射
摘自:https://blog.csdn.net/lincheng15/article/details/51789093 摘自:http://www.51hei.com/bbs/dpj-36242-1 ...
- (九)RabbitMQ消息队列-通过Headers模式分发消息
原文:(九)RabbitMQ消息队列-通过Headers模式分发消息 Headers类型的exchange使用的比较少,以至于官方文档貌似都没提到,它是忽略routingKey的一种路由方式.是使用H ...
- ios开发多线程一:了解-NSOperation的基本使用
#import "ViewController.h" @interface ViewController () @end @implementation ViewControlle ...