Ok. It works now. Thx!
<bean id="membersAuthc"
class="org.apache.shiro.web.filter.authc.FormAuthenticationFilter">
<property name="loginUrl" value="${frontPath}/loginl"/>
<property name="successUrl" value="${frontPath}" />
</bean>
<bean id="adminAuthc"
class="org.apache.shiro.web.filter.authc.FormAuthenticationFilter">
<property name="loginUrl" value="${adminPath}/login"/>
<property name="successUrl" value="${adminPath}" />
</bean>
<bean id="adminUser"
class="org.apache.shiro.web.filter.authc.UserFilter">
<property name="loginUrl" value="${adminPath}/login"/>
</bean>
<bean id="frontUser" class="org.apache.shiro.web.filter.authc.UserFilter">
<property name="loginUrl" value="${frontPath}/login"/>
</bean>
<bean id="shiroFilter"
class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="loginUrl"
value="${adminPath}/login" />
<property name="successUrl"
value="${adminPath}" />
<property name="filters">
<map>
<entry key="authc" value-ref="formAuthenticationFilter"/>
<entry key="membersAuthc" value-ref="membersAuthc"/>
<entry key="adminAuthc" value-ref="adminAuthc"/>
<entry key="adminUser" value-ref="adminUser"/>
</map>
</property>
<property name="filterChainDefinitions">
<value>
/static/** = anon
/userfiles/** = anon
${adminPath}/login = authc
${adminPath}/logout = logout
${adminPath}/** = adminUser
${frontPath}/show* = frontUser
</value>
</property>
</bean>
--
View this message in context:
http://shiro-user.582556.n2.nabble.com/multiple-login-pages-tp7579885p7579891.html
Sent from the Shiro User mailing list archive at Nabble.com.