我遇到安全表单有问题,有两个标签 - 登录/注册。 在添加寄存器选项卡之前,它有效。我正在使用弹簧安全。 这甚至可能吗? 以下是代码的一部分: JSP: index.jsp的
<div id="dialog">
<form id="dialogForm" action="j_spring_security_check" method="GET">
<div id="tabs">
<ul>
<li><a href="#login">Login</a></li>
<li><a href="#register">Register</a></li>
</ul>
<div id="login">
<jsp:include page="login.jsp"/>
</div>
<div id="register">
<jsp:include page="register.jsp"/>
</div>
</div>
</form>
</div>
的login.jsp
<form:form id="logingForm" action="login" method="GET">
<div id="loginForm" class="ui-widget-content" >
<table>
<tr>
<td align="right" width="100">User:</td>
<td width="100"><input type="text" name="j_username"/></td>
</tr>
<tr>
<td align="right" width="100">Password:</td>
<td width="100"><input type="password" name="j_password" /></td>
</tr>
</table>
<br>
<input id="logInButton" type="submit" value="SignIn" />
</div>
</form:form>
register.jsp
<form:form id="mainRegForm" action="register" commandName="registration" method="GET">
<table align="right" width="300" cellpadding="0">
<tr>
<td>User Name:<FONT color="red"><form:errors
path="userName" /></FONT></td>
<td><form:input path="userName" /></td>
</tr>
<tr>
<td>Password:<FONT color="red"><form:errors
path="password" /></FONT></td>
<td><form:password path="password" /></td>
</tr>
<tr>
<td>Confirm Password:<FONT color="red"><form:errors
path="confirmPassword" /></FONT></td>
<td><form:password path="confirmPassword" /></td>
</tr>
<tr>
<tr>
<td>Email address:<FONT color="red"><form:errors path="email" /></FONT></td>
<td><form:input path="email" /></td>
</tr>
<tr>
<td>Age:<FONT color="red"><form:errors path="age" size="1" /></FONT></td>
<td><form:select path="age" items="${ageList}"/></td>
</tr>
<tr>
<td>Sex:<FONT color="red"><form:errors path="sex" size="1" /></FONT></td>
<td><form:select path="sex" items="${mfList}"/></td>
</tr>
<tr>
<td>Location:<FONT color="red"><form:errors path="location" size="1" /></FONT></td>
<td><form:select path="location" items="${countryList}"/></td>
</tr>
<tr>
<td><input type="submit" value="Register" onClick="submitRegister()"/></td>
</tr>
</table>
</form:form>
弹簧security.xml文件
<http auto-config="true">
<form-login login-page="/index" default-target-url="/welcome"
authentication-failure-url="/loginfailed" />
<logout logout-success-url="/logout" />
</http>
<authentication-manager>
<authentication-provider user-service-ref="customUserDetailsService">
</authentication-provider>
</authentication-manager>
<beans:bean id="customUserDetailsService" class="controllers.CustomUserDetailsService">
<beans:property name="userDao" ref="userDao"/>
</beans:bean>
当我按下登录按钮提交选项卡式对话框时,它会将我重定向到loginfailed页面。我尝试首次亮相CustomUserDetailsService类但它没有执行。 你能帮我解决这个问题吗? 谢谢是建议!
答案 0 :(得分:0)
包含<jsp:include page="login.jsp"/>
和<jsp:include page="register.jsp"/>
正在表单中嵌套表单 - 这是无效的HTML。浏览器可能无法传输您所期望的内容 - 因此登录失败页面。
您应移除dialogForm
中声明的外部index.jsp
,然后修改login.jsp
并将logingForm
的操作更改为j_spring_security_check