I had a project that was working ok with Spring 3.0. I've now moved to Maven to control dependencies and moved to Spring 3.1.2 jars and Spring security 3.1.1 jars.
When I attempt to access a JSP that includes use of the security taglib (eg ) I get the error below:
javax.servlet.ServletException: javax.servlet.jsp.JspException: java.io.IOException: No visible WebSecurityExpressionHandler instance could be found in the application context. There must be at least one in order to support expressions in JSP 'authorize' tags.
In my security-context I have:
<http auto-config="true" use-expressions="true" create-session="ifRequired"
From my old project:
<beans:bean id="expressionHandler" class="org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler" />
I couldn't find that class in the packages I have for my project, so thinking it may just be a move of classes I tried:
<beans:bean id="expressionHandler" class="org.springframework.security.web.access.expression.WebSecurityExpressionHandler" />
This gives me the same error.
Spring-security dependencies I have configured at the moment: spring-security-core-3.1.1 spring-security-taglibs-3.1.1 spring-security-acl-3.1.1 spring-security-config-3.1.1 spring-security-web-3.1.1
Am I missing a jar that would contain whatever 'use-expressions=true' needs?