From 6f3e92e2e4b2e1d40781177dec940f35337a04c3 Mon Sep 17 00:00:00 2001
From: "Mark St. Godard" UserDetails, we suggest you write the
UserDetails object to the log and check it looks correct.
A common user problem with infinite loop and redirecting to the login page + is caused by accidently configuring the login page as a "secured" resource. + See this forum post for more details.
+ +If you are securing web resources and they dont seem to be matched in the URL patterns, + check the objectDefinitionSource in the FilterSecurityInterceptor. + If you are using the CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON setting, + then the URL patterns configured MUST be in lowercase. +
+ For example, making a request ending in /someAction.do will need + to be configured as: /someaction.do (Note the case). +
+<property name="objectDefinitionSource"> + <value> + CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON + PATTERN_TYPE_APACHE_ANT + /index.jsp=ROLE_ANONYMOUS,ROLE_USER + /someaction.do=ROLE_USER + <value> +</property> ++
+ See this forum post for more details.
+The most important things to post with any support requests on the Spring Forums are your