Summary

Hello, I have faced an issue that I cannot get named parameter JDBC template while I work with your implementation (org.springframework.security.web.authentication.rememberme.JdbcTokenRepositoryImpl). I my current case I need to create my own implementation of repository instead of extending yours, which is not difficult, but odd in some case.

Version

It affects all versions of Spring Security.

Sample

As I see, all that needs to be done is to replace interface.

Current version: public class JdbcTokenRepositoryImpl extends JdbcDaoSupport implements PersistentTokenRepository {

What I propose: public class JdbcTokenRepositoryImpl extends NamedParameterJdbcDaoSupport implements PersistentTokenRepository {

Thanks.