-1

我有一个用户模型 UserServices 并通过登录页面对注册用户进行身份验证。
你能帮我写一下在Authentication Controller中使用的方法吗?

<fieldset><legend>Authentication</legend>
<form:form action="login.htm"  commandName="user">
    <table>
        <tr>
            <td>User Name:<FONT color="red"><form:errors
                path="userName" /></FONT></td>
        </tr>
        <tr>
            <td><form:input path="userName" /></td>
        </tr>
        <tr>
            <td>Password:<FONT color="red"><form:errors
                path="password" /></FONT></td>
        </tr>
        <tr>
            <td><form:password path="password" /></td>
        </tr>
        <tr>
            <td><input type="submit" value="Submit" /></td>
        </tr>
    </table>
</form:form>
</fieldset>
4

2 回答 2

1

在这里,您可以找到一个示例教程,如何将 Spring Security 添加到您的应用程序中。 http://blog.rajithdelantha.com/2012/07/spring-security-part-1-sample-login.html

于 2012-08-07T12:36:02.230 回答
1

如果您已经使用过 spring,您可以轻松添加spring 安全性来处理用户身份验证和权限。

于 2012-08-07T12:26:29.660 回答