This commit adds a check for rememberme to the ExceptionTranslationFilter.
Using this when someone isn't fully authenticated he will be prompted with a
login screen and after that will be redirected to the original requested URI.
Fixes gh-2427
@ -293,7 +295,7 @@ public class ExpressionUrlAuthorizationConfigurerTests extends BaseSpringSpec {
@@ -293,7 +295,7 @@ public class ExpressionUrlAuthorizationConfigurerTests extends BaseSpringSpec {
@ -339,16 +341,12 @@ public class ExpressionUrlAuthorizationConfigurerTests extends BaseSpringSpec {
@@ -339,16 +341,12 @@ public class ExpressionUrlAuthorizationConfigurerTests extends BaseSpringSpec {
@ -169,10 +168,10 @@ public class ExceptionTranslationFilter extends GenericFilterBean {
@@ -169,10 +168,10 @@ public class ExceptionTranslationFilter extends GenericFilterBean {
"Access is denied (user is anonymous); redirecting to authentication entry point",
"Access is denied (user is "+(authenticationTrustResolver.isAnonymous(authentication)?"anonymous":"not fully authenticated")+"); redirecting to authentication entry point",