Initial commit of Persisted Remember-Me Example

Initial commit - project copied from spring-security-mvc-custom and
modified. Added PersistedToken remember me configuration (in xml and
annotated classes), and some minor refactoring. This version works with
PostgreSQL or H2 (configured in DatabaseConfig.java).
This commit is contained in:
corsoft
2014-05-30 22:55:17 +01:00
parent da60bb960e
commit 7b7b5ae49f
20 changed files with 850 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
=========
## Spring Security Persisted Remember Me Example Project
### Relevant Articles:
- [Spring Security Persisted Remember Me]
- [Spring Security Remember Me](http://www.baeldung.com/spring-security-remember-me)
- [Redirect to different pages after Login with Spring Security](http://www.baeldung.com/spring_redirect_after_login)
### Build the Project
```
mvn clean install
```