使用JBoss在j_security_check中的http状态408

时间:2014-09-19 12:06:17

标签: java hibernate jboss struts http-error

目前我面临着奇怪的问题。我有一个演示应用程序,它只是从数据库验证用户并显示欢迎页面。

问题是如果我保持登录页面打开然后重新启动服务器后,尝试使用之前打开的同一页面登录,屏幕显示HTTP Status 408 - The time allowed for the login process has been exceeded.错误。

我尝试在HTTP Status 408 error during login with domain forwarding set up链接中修改了建议,但它无效。

这是我的登录页面:

<!DOCTYPE html>
<head>
        <title>Login</title>
        <meta charset="utf-8" />
        <meta http-equiv="Cache-Control" content="no-store,no-cache,must-revalidate"/>
        <meta http-equiv="Pragma" content="no-cache"/>
        <meta http-equiv="Expires" content="-1"/>
</head>
<body>
    <form method="post" action='<%= response.encodeURL("j_security_check") %>' id="login" >
        <label for="username">Username</label>
        <input type="text" name="j_username" id="username" autofocus />

        <label for="password">Password</label>
        <input type="password" name="j_password" id="password" />

        <button type="submit" class="primary" name="Submit">Log in</button>
    </form>
</body>
</html>

我尝试调试,但请求不是通过服务器到控制器。所以我猜jboss服务器有问题。任何帮助将不胜感激。感谢

1 个答案:

答案 0 :(得分:1)

在我的情况下,我添加到登录页面。

setInterval(function(){
        location.reload(true); //reload each 5 minutes
    },5*60*1000);

希望得到这个帮助。