您的位置:首页 > 其它

shiro验证相关

2016-07-22 20:23 381 查看
今天完成的:出现302问题,把不需要shiro验证的页面加到如下配置里即可
<bean id="chainDefinitionSectionMetaSource" class="com.qcacg.shiro.ChainDefinitionSectionMetaSource">
<property name="filterChainDefinitions">
<value>
/common/** = anon
/lib/** = anon
/module/** = anon
/treegrid/** = anon
/denied.shtml = anon
/login.shtml = anon
/toLogin.shtml = anon
/register.shtml = anon
/toRegister.shtml = anon
/sendTelephoneCode.shtml = anon
/toUpdatePassword.shtml = anon
/404.jsp = anon
/error.jsp = anon

</value>
</property>
</bean>


--------------------

明天计划的:完成注册短信验证

-------------------

遇到的问题:短信验证发送之后,虽然显示倒计时,但点发送还会再发送请求。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: