У меня есть следующее определение ...
<bean id="fsi" class="org.springframework.security.intercept.web.FilterSecurityInterceptor">
<property name="authenticationManager" ref="authenticationManager"/>
<property name="accessDecisionManager" ref="httpRequestAccessDecisionManager"/>
<property name="objectDefinitionSource">
<sec:filter-invocation-definition-source >
<sec:intercept-url pattern="/secure/css/**" access="ROLE_TIER0"/>
<sec:intercept-url pattern="/secure/images/**" access="ROLE_TIER0"/>
<sec:intercept-url pattern="/**" access="ROLE_TIER0"/>
</sec:filter-invocation-definition-source>
</property>
</bean>
Я хотел бы иметь ресурсы по этому URL ...
"/ nonSecure / **"
Открыто для всех вызовов, т. Е. Нет безопасности вокруг него.
Я пытался добавить ...
<sec:intercept-url pattern="/nonsecure/**" access="permitAll" />
Но это заставляет Websphere выдать ошибку о
Unsupported configuration attributes: [permitAll]
Может кто-нибудь сказать мне, как исключить этот URL из безопасности?