initial remember me work

This commit is contained in:
eugenp 2013-08-01 12:48:05 +03:00
parent 0d8cd51f87
commit 37df9c6cc7
4 changed files with 52 additions and 40 deletions

View File

@ -198,8 +198,8 @@
<junit.version>4.11</junit.version> <junit.version>4.11</junit.version>
<mockito.version>1.9.5</mockito.version> <mockito.version>1.9.5</mockito.version>
<httpcore.version>4.2.4</httpcore.version>
<httpclient.version>4.2.5</httpclient.version> <httpclient.version>4.2.5</httpclient.version>
<httpcore.version>4.2.4</httpcore.version>
<rest-assured.version>1.8.1</rest-assured.version> <rest-assured.version>1.8.1</rest-assured.version>
<groovy.version>1.8.9</groovy.version> <groovy.version>1.8.9</groovy.version>

View File

@ -15,6 +15,8 @@
<logout delete-cookies="JSESSIONID" /> <logout delete-cookies="JSESSIONID" />
<remember-me/>
</http> </http>
<beans:bean id="myAuthenticationSuccessHandler" class="org.baeldung.security.MySimpleUrlAuthenticationSuccessHandler" /> <beans:bean id="myAuthenticationSuccessHandler" class="org.baeldung.security.MySimpleUrlAuthenticationSuccessHandler" />

View File

@ -15,6 +15,10 @@
<td>Password:</td> <td>Password:</td>
<td><input type='password' name='j_password' /></td> <td><input type='password' name='j_password' /></td>
</tr> </tr>
<tr>
<td>Remember Me:</td>
<td><input type="checkbox" name="_spring_security_remember_me" /></td>
</tr>
<tr> <tr>
<td><input name="submit" type="submit" value="submit" /></td> <td><input name="submit" type="submit" value="submit" /></td>
</tr> </tr>

View File

@ -1,10 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
xsi:schemaLocation=" xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Spring MVC Application</display-name> <display-name>Spring MVC Custom Application</display-name>
<session-config>
<session-timeout>1</session-timeout>
</session-config>
<!-- Spring root --> <!-- Spring root -->
<context-param> <context-param>