Struts2 拦截器
程序员文章站
2024-03-21 08:45:40
...
<?xml version="1.0" encoding="GBK"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="authority" extends="struts-default">
<interceptors>
<!-- 自定义拦截器 -->
<interceptor name="authority" class="org.wncnke.authority.AuthorityInterceptor"/>
<!-- 拦截器栈 -->
<interceptor-stack name="myAuthority">
<interceptor-ref name="defaultStack"></interceptor-ref><!-- 如果struts的默认拦截器不加,那么struts2的功能就不好用了 -->
<interceptor-ref name="authority"></interceptor-ref>
</interceptor-stack>
</interceptors>
<!-- 设置本包内的默认拦截器,如果不设置默认拦截器,可以再action下加 -->
<default-interceptor-ref name="myAuthority"></default-interceptor-ref>
<global-results>
<result name="login">/login.jsp</result>
</global-results>
<action name="view">
<result>/view.jsp</result>
</action>
</package>
<package name="login" extends="struts-default">
<action name="login" class="org.wncnke.authority.LoginAction">
<result name="error">/login.jsp</result>
<result name="success">/welcome.jsp</result>
</action>
</package>
</struts>
详细代码件附件。。。
出处:http://wenchuanke.iteye.com/blog/368743
上一篇: 【MySQL】数据库导入导出及授权
推荐阅读
-
Struts2 拦截器
-
问一下使用struts的同学们,你们这些年,是怎么过来的? 博客分类: vb2005xu开发文章转摘 struts2
-
关于拦截器cookie-session用户身份认证
-
struts.xml详解 博客分类: Struts2 strutsweb
-
Struts2 的result类型 博客分类: Struts2 apachestruts2weborg
-
struts2表单重复提交问题 博客分类: Struts2
-
struts2.0拦截器token的使用导致数据无法绑定 博客分类: Struts2 StrutsWebworkSOAP
-
struts.properties配置详解 博客分类: Struts2
-
Struts2的iterator各种用法 博客分类: Struts2 property
-
struts.devMode 博客分类: Struts2 struts2strutstomcatexceptionnullpointerexception