Hi,
I noticed today, during a timeout, that acegi security is not applied to URLs with query parameters.
My objectDefinitionSource is defined as follows:
The reason why I'm not using /** as role definition, is that I don't want my css/images/js/.. to be secured. Those should be both available to all types of users.Code:<property name="objectDefinitionSource"> <value> CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON PATTERN_TYPE_APACHE_ANT /login.jsp=ROLE_ANONYMOUS /admin/**=ROLE_ADMIN /**/*.jsp=ROLE_USER /**/*.do=ROLE_USER </value> </property>
How should I fix this problem in my application, in a secure way??


