0

我已经实现了一个使用 spring security 并记住我服务的小应用程序。如果我使用它工作正常

<authentication-provider>
<user-service/>
//hardcoded the userName/Password here.

即使在服务器重新启动后,我也可以在不登录的情况下访问应用程序。但是当我修改 app-security.xml 以使用

<authentication-provider>
<jdbc-user-service id="userService" data-source-ref="dataSource"        
users-by-username-query="
         query here..."
authorities-by-username-query="
query here..."/>
</authentication-provider>

它不工作。请提供更多信息如何实现记住我(TokenBaserRememberMeServices with jdbc-user-service)。任何帮助都会得到帮助。谢谢。

4

1 回答 1

0

您在 jdbc 中使用与硬编码相同的用户名/密码吗?在尝试使用 jdbc 服务进行身份验证之前,您是否还删除了令牌 cookie?

于 2013-08-13T14:43:01.443 回答