我已经实现了一个使用 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)。任何帮助都会得到帮助。谢谢。