Hello,

I am trying to configure the anonymous access to my sources (I am using
spring):

This seems to be incorrect.

I have the follwing declaration in web.xml:
<servlet-mapping>
    <servlet-name>Spring Application Servlet</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>

and try to allow for everybody the access to the url:

<bean id="shiroFilter"
class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
    <property name="securityManager" ref="securityManager" />
    <property name="filterChainDefinitions">
      <value>
        /** = anon
        </value>
    </property>
  </bean>

What I am doing wrong ?--
View this message in context: 
http://shiro-user.582556.n2.nabble.com/Anonymous-access-configuration-for-ShiroFilterFactoryBean-tp6319168p6319168.html
Sent from the Shiro User mailing list archive at Nabble.com.

Reply via email to