我试图从JSP(I-Frame)调用我的Spring MVC控制器并在浏览器上收到以下错误
400 Bad Request,The request sent by the client was syntactically incorrect ()
这是我向服务器发送请求的JQuery代码
jQuery("#login").live('click', function(e) {
e.preventDefault();
jQuery.ajax({
url: "https://localhost:9002/myApp/springSecurity/login.json",
xhrFields: {
withCredentials: true
},
type: "POST",
crossDomain:true,
data: jQuery("#loginForm").serialize(),
contentType: "json",
success: function(data, status) {
alert(data);
alert(status);
if (data.loggedIn) {
// location.href = getHost() + '${ctx}/users';
//login_pannel
} else {
loginFailed(data);
}
},
error: loginFailed
});
});
这是我的控制器代码
@Controller
@RequestMapping("springSecurity/login.json")
public class SpringSecurityLoginController
{
@RequestMapping(method = RequestMethod.POST)
@ResponseBody
public SpringSecurityLoginStatus login(@RequestParam("j_username") final String username,
@RequestParam("j_password") final String password, final HttpServletRequest request, final HttpServletResponse response)
{
LOG.info("Starting login process");
return springSecurityLoginService.login(username, password, request, response);
}
}
在按下提交按钮时,我在服务器上没有出现任何错误,但在查看浏览器控制台输出时,它显示出以下错误
"NetworkError: 400 Bad Request - https://localhost:9002/myApp/springSecurity/login.json"
这是来自Mozilla Response标头的错误信息
the request sent by the client was syntactically incorrect ().
我不确定导致此行为的原因。 另外,我使用Spring安全性来处理身份验证和授权。
修改
我调试了更多,并且当我检查j_username
的值并且我的Controller中的j_password
为空时,发现表单值没有提交给我的控制器。
我甚至尝试过request.getParameter("param name");
,但仍有相同的值为空