随笔-34  评论-1965  文章-0  trackbacks-0

首先,要跟大家道个歉,前一阵子为给客户个一个demo,忙得不可开交,所以很久没有更新blog。提到这个demo我想顺便跟大家分享一下心得——如果大家希望快速开发,一个类似struts 2这样的简单方便的web框架必不可少。我们在开发demo使用的还是struts 1.2.8,而且没有不使用任何el(表达式语言),导致页面出现无数类似“<%= ((integer) request.getattribute("xx")).intvalue()%6 %>”的代码。struts 1.x的form bean的麻烦使得有部分同事直接使用request.getparameter(string arg),继而引入另一种麻烦。诸如此类的问题,在demo这样时间紧迫的项目凸显了struts 1.x对快速开发的无能为力。不过没办法,由于我们项目中的几个资深员工除了struts 1.x外,对其它的web框架似乎不大感兴趣。

言归正传,interceptor(以下译为拦截器)是struts 2的一个强有力的工具,有许多功能(feature)都是构建于它之上,如国际化、,等。

什么是拦截器

拦截器,在aop(aspect-oriented programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。拦截是aop的一种实现策略。

在webwork的中文文档的解释为——拦截器是动态拦截action调用的对象。它提供了一种机制可以使开发者可以定义在一个action执行的前后执行的代码,也可以在一个action执行前阻止其执行。同时也是提供了一种可以提取action中可重用的部分的方式。

谈到拦截器,还有一个词大家应该知道——拦截器链(interceptor chain,在struts 2中称为拦截器栈interceptor stack)。拦截器链就是将拦截器按一定的顺序联结成一条链。在访问被拦截的方法或字段时,拦截器链中的拦截器就会按其之前定义的顺序被调用。

实现原理

struts 2的拦截器实现相对简单。当请求到达struts 2的servletdispatcher时,struts 2会查找配置文件,并根据其配置实例化相对的拦截器对象,然后串成一个列表(list),最后一个一个地调用列表中的拦截器,如图1所示。

图1 拦截器调用序列图
图1 拦截器调用序列图

已有的拦截器

struts 2已经为您提供丰富多样的,功能齐全的拦截器实现。大家可以到struts2-all-2.0.1.jar或struts2-core-2.0.1.jar包的struts-default.xml查看关于默认的拦截器与拦截器链的配置。

在本文使用是struts 2的最新发布版本2.0.1。需要下载的朋友请点击以下链接:

以下部分就是从struts-default.xml文件摘取的内容:

< interceptor name ="alias" class ="com.opensymphony.xwork2.interceptor.aliasinterceptor" />
< interceptor name ="autowiring" class ="com.opensymphony.xwork2.spring.interceptor.actionautowiringinterceptor" />
< interceptor name ="chain" class ="com.opensymphony.xwork2.interceptor.chaininginterceptor" />
< interceptor name ="conversionerror" class ="org.apache.struts2.interceptor.strutsconversionerrorinterceptor" />
< interceptor name ="createsession" class ="org.apache.struts2.interceptor.createsessioninterceptor" />
< interceptor name ="debugging" class ="org.apache.struts2.interceptor.debugging.debugginginterceptor" />
< interceptor name ="external-ref" class ="com.opensymphony.xwork2.interceptor.externalreferencesinterceptor" />
< interceptor name ="execandwait" class ="org.apache.struts2.interceptor.executeandwaitinterceptor" />
< interceptor name ="exception" class ="com.opensymphony.xwork2.interceptor.exceptionmappinginterceptor" />
< interceptor name ="fileupload" class ="org.apache.struts2.interceptor.fileuploadinterceptor" />
< interceptor name ="i18n" class ="com.opensymphony.xwork2.interceptor.i18ninterceptor" />
< interceptor name ="logger" class ="com.opensymphony.xwork2.interceptor.logginginterceptor" />
< interceptor name ="model-driven" class ="com.opensymphony.xwork2.interceptor.modeldriveninterceptor" />
< interceptor name ="scoped-model-driven" class ="com.opensymphony.xwork2.interceptor.scopedmodeldriveninterceptor" />
< interceptor name ="params" class ="com.opensymphony.xwork2.interceptor.parametersinterceptor" />
< interceptor name ="prepare" class ="com.opensymphony.xwork2.interceptor.prepareinterceptor" />
< interceptor name ="static-params" class ="com.opensymphony.xwork2.interceptor.staticparametersinterceptor" />
< interceptor name ="scope" class ="org.apache.struts2.interceptor.scopeinterceptor" />
< interceptor name ="servlet-config" class ="org.apache.struts2.interceptor.servletconfiginterceptor" />
< interceptor name ="sessionautowiring" class ="org.apache.struts2.spring.interceptor.sessioncontextautowiringinterceptor" />
< interceptor name ="timer" class ="com.opensymphony.xwork2.interceptor.timerinterceptor" />
< interceptor name ="token" class ="org.apache.struts2.interceptor.tokeninterceptor" />
< interceptor name ="token-session" class ="org.apache.struts2.interceptor.tokensessionstoreinterceptor" />
< interceptor name ="validation" class ="com.opensymphony.xwork2.validator.validationinterceptor" />
< interceptor name ="workflow" class ="com.opensymphony.xwork2.interceptor.defaultworkflowinterceptor" />
< interceptor name ="store" class ="org.apache.struts2.interceptor.messagestoreinterceptor" />
< interceptor name ="checkbox" class ="org.apache.struts2.interceptor.checkboxinterceptor" />
< interceptor name ="profiling" class ="org.apache.struts2.interceptor.profilingactivationinterceptor" />

配置和使用拦截器

在struts-default.xml中已经配置了以上的拦截器。如果您想要使用上述拦截器,只需要在应用程序struts.xml文件中通过“”将struts-default.xml文件包含进来,并继承其中的struts-default包(package),最后在定义action时,使用“”引用拦截器或拦截器栈(interceptor stack)。一旦您继承了struts-default包(package),所有action都会调用拦截器栈 ——defaultstack。当然,在action配置中加入“”可以覆盖defaultstack。

下面是关于拦截器timer使用的例子。首先,新建action类tuotrial/timerinterceptoraction.java,内容如下:

package tutorial;

import com.opensymphony.xwork2.actionsupport;

public class timerinterceptoraction extends actionsupport {
   @override
   
public string execute() {
       
try {
           
// 模拟耗时的操作
           thread.sleep( 500 );
       }
catch (exception e) {
           e.printstacktrace();
       }

       
return success;
   }

}

配置action,名为timer,配置文件如下:

doctype struts public
        "-//apache software foundation//dtd struts configuration 2.0//en"
        "http://struts.apache.org/dtds/struts-2.0.dtd"
>
< struts >
   
< include file ="struts-default.xml" />    
   
< package name ="interceptordemo" extends ="struts-default" >
       
< action name ="timer" class ="tutorial.timerinterceptoraction" >
           
< interceptor-ref name ="timer" />
           
< result > /timer.jsp result >
       
action >
   
package >
struts >

至于timer.jsp可以随意写些什么到里面。发布运行应用程序,在浏览器的地址栏键入,在出现timer.jsp页面后,查看服务器的后台输出。

2006 - 12 - 6 14 : 27 : 32 com.opensymphony.xwork2.interceptor.timerinterceptor dolog
信息: executed action
[ //timer!execute ] took 2859 ms.

在您的环境中执行timer!execute的耗时,可能上述的时间有些不同,这取决于您pc的性能。但是无论如何,2859 ms与500 ms还是相差太远了。这是什么原因呢?其实原因是第一次加载timer时,需要进行一定的初始工作。当你重新请求timer.action时,以上输出会变为:

2006 - 12 - 6 14 : 29 : 18 com.opensymphony.xwork2.interceptor.timerinterceptor dolog
信息: executed action
[ //timer!execute ] took 500 ms.

ok,这正是我们期待的结果。上述例子演示了拦截器timer的用途——用于显示执行某个action方法的耗时,在我们做一个粗略的性能调试时,这相当有用。

自定义拦截器

作为“框架(framework)”,可扩展性是不可或缺的,因为世上没有放之四海而皆准的东西。虽然,struts 2为我们提供如此丰富的拦截器实现,但是这并不意味我们失去创建自定义拦截器的能力,恰恰相反,在struts 2自定义拦截器是相当容易的一件事。

 

大家在开始着手创建自定义拦截器前,切记以下原则:
拦截器必须是无状态的,不要使用在api提供的actioninvocation之外的任何东西。

要求拦截器是无状态的原因是struts 2不能保证为每一个请求或者action创建一个实例,所以如果拦截器带有状态,会引发并发问题。

所有的struts 2的拦截器都直接或间接实现接口com.opensymphony.xwork2.interceptor.interceptor。除此之外,大家可能更喜欢继承类com.opensymphony.xwork2.interceptor.abstractinterceptor。

以下例子演示通过继承abstractinterceptor,实现授权拦截器。

首先,创建授权拦截器类tutorial.authorizationinterceptor,代码如下:

package tutorial;

import java.util.map;

import com.opensymphony.xwork2.action;
import com.opensymphony.xwork2.actioninvocation;
import com.opensymphony.xwork2.interceptor.abstractinterceptor;

public class authorizationinterceptor extends abstractinterceptor {

   @override
   
public string intercept(actioninvocation ai) throws exception {
       map session
= ai.getinvocationcontext().getsession();
       string role
= (string) session.get( " role " );
       
if ( null != role) {
           object o
= ai.getaction();
           
if (o instanceof roleaware) {
               roleaware action
= (roleaware) o;
               action.setrole(role);
           }

           
return ai.invoke();
       }
else {
           
return action.login;
       }
       
   }


}

以上代码相当简单,我们通过检查session是否存在键为“role”的字符串,判断用户是否登陆。如果用户已经登陆,将角色放到action中,调用action;否则,拦截直接返回action.login字段。为了方便将角色放入action,我定义了接口tutorial.roleaware,代码如下:

package tutorial;

public interface roleaware {
   
void setrole(string role);
}

接着,创建action类tutorial.authorizatedaccess模拟访问受限资源,它作用就是通过实现roleaware获取角色,并将其显示到showuser.jsp中,代码如下:

package tutorial;

import com.opensymphony.xwork2.actionsupport;

public class authorizatedaccess extends actionsupport implements roleaware {
   
private string role;
   
   
public void setrole(string role) {
       
this .role = role;
   }

   
   
public string getrole() {
       
return role;
   }


   @override
   
public string execute() {
       
return success;
   }

}

以下是showuser.jsp的代码:

<% @ page  contenttype = " text/html; charset=utf-8 " %>
<% @taglib prefix = " s " uri = " /struts-tags " %>
< html >
< head >
   
< title > authorizated user title >
head >
< body >
   
< h1 > your role is: < s:property value ="role" /> h1 >
body >
html >

然后,创建tutorial.roles初始化角色列表,代码如下:

package tutorial;

import java.util.hashtable;
import java.util.map;


public class roles {
   
public map < string, string > getroles() {
       map
< string, string > roles = new hashtable < string, string > ( 2 );
       roles.put(
" employee " , " employee " );
       roles.put(
" manager " , " manager " );
       
return roles;
   }

}

接下来,新建login.jsp实例化tutorial.roles,并将其roles属性赋予标志,代码如下:

<% @ page  contenttype = " text/html; charset=utf-8 " %>
<% @taglib prefix = " s " uri = " /struts-tags " %>
< html >
< head >
   
< title > login title >
head >
< body >
   
< h1 > login h1 >
    please select a role below:
   
< s:bean id ="roles" name ="tutorial.roles" />
   
< s:form action ="login" >
       
< s:radio list ="#roles.roles" value ="'employee'" name ="role" label ="role" />
       
< s:submit />
   
s:form >
body >
html >

创建action类tutorial.login将role放到session中,并转到action类tutorial.authorizatedaccess,代码如下:

package tutorial;

import java.util.map;

import org.apache.struts2.interceptor.sessionaware;

import com.opensymphony.xwork2.actionsupport;

public class login extends actionsupport implements sessionaware {
   
private string role;    
   
private map session;

   
public string getrole() {
       
return role;
   }


   
public void setrole(string role) {
       
this .role = role;
   }

   
   
public void setsession(map session) {
       
this .session = session;
   }


   @override
   
public string execute() {
       session.put(
" role " , role);
       
return success;
   }
   
}

最后,配置struts.xml文件,内容如下:

doctype struts public
        "-//apache software foundation//dtd struts configuration 2.0//en"
        "http://struts.apache.org/dtds/struts-2.0.dtd"
>
< struts >
   
< include file ="struts-default.xml" />    
   
< package name ="interceptordemo" extends ="struts-default" >
       
< interceptors >
           
< interceptor name ="auth" class ="tutorial.authorizationinterceptor" />
       
interceptors >
       
< action name ="timer" class ="tutorial.timerinterceptoraction" >
           
< interceptor-ref name ="timer" />
           
< result > /timer.jsp result >
       
action >
       
< action name ="login" class ="tutorial.login" >
           
< result type ="chain" > authorizatedaccess result >
       
action >
       
< action name ="authorizatedaccess" class ="tutorial.authorizatedaccess" >
           
< interceptor-ref name ="auth" />
           
< result name ="login" > /login.jsp result >
           
< result name ="success" > /showrole.jsp result >
       
action >
   
package >
struts >

发布运行应用程序,在浏览器地址栏中输入:。由于此时,session还没有键为“role”的值,所以返回login.jsp页面,如图2所示:

图2 login.jsp
图2 login.jsp

选中employee,点击submit,出现图3所示页面:

图3 showrole.jsp
图3 showrole.jsp

总结

拦截器是struts 2比较重要的一个功能。通过正确地使用拦截器,我们可以编写高可复用的代码。

posted on 2006-12-06 20:10 max 阅读(111356) 评论(72)     所属分类: struts 2.0系列

评论:
# re: struts 2的基石——拦截器(interceptor) 2006-12-06 20:43 |
一直 在关注你struts2的文章,写的很不错。谢谢!!  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2006-12-06 22:50 |
写的不错,通俗易懂!  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2006-12-07 09:31 |
to max:

-------
由于我们项目中的几个资深员工除了struts 1.x外,对其它的web框架似乎不大感兴趣。
-------

商业软件,
选择什么框架,
其实他们未必能做主......
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2006-12-07 11:01 | max
@tendy
这个项目我们是可以自由选取框架。因为只是demo,不管我们用什么框架(或不用框架),实现所有功能需求就可以了。
小发一下牢骚:)  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2006-12-07 15:58 |
有时间大家去读读ted他们写的struts2的文档和example,会有更多认识,文档写得蛮清楚的  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2006-12-08 09:46 |
2.0.1还是beta版,究竟啥时发布啊??等....  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-03-23 11:42 |
謝謝,正在學習中,感覺不錯!  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-04-16 17:43 |
配置文件中的
< result name ="success" > /showrole.jsp
应该改为showuser.jsp  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-04-19 18:04 |
楼主,你觉得要快速开发一个web原型系统,搭什么样的开发环境比较理想  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-04-19 22:47 | max
@xulao
我个人认为myeclipse 5.1或netbean 5.5都不错的。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-04-25 09:17 |
偶用eclipse, myeclipse不是需要注册的嘛!

大家都是买凯发k8网页登录的版权的吗?

关于这个权限拦截的例子, 是否应该在用户键入任何页面时,都调用,

这样的话,要如何实现呢?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-04-25 14:02 |
ls的问题, 知道了,

是否在每个action定义块里面, 加上< interceptor-ref name ="auth" />
就可以了呢?

如果用户直接指定的url不是action, 也是jsp的话,
该如果调用拦截器呢?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-05-21 22:30 |
是不是设置单选按钮的默认值是"employee"啊,为什么页面上的employee单选按钮没有被选中???  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-05-22 09:21 | max
@yesw
用value ="'employee'",就可以了。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-07-31 09:31 |
it good article! thanks to max  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2007-08-11 15:56 |
hi!max:
你能不能写一个关于actioninvocation中addpreresultlistener方法的例子(运用在拦截器中的)
最好详细点,我看文档看的晕晕的!!
先谢了啊  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-08-12 15:13 |
max老大。
这个程序我调不通啊

首先是有一个duplicate s的错误。我估计是不是两个jsp都用了
prefix="s"的问题。.后来我把另外一个改成z就好了。
这个问题我已经成功解决.

另外有一个问题就是login.jsp中的
他报错。他说attrbuite no alue.
请问该怎么解决~  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-08-24 17:07 |
struts problem report

struts has detected an unhandled exception:
# messages: no result defined for action login.login and result input
file: file:/d:/projects/struts/apache-tomcat-5.5.23/webapps/root/web-inf/classes/strutslogin.xml
line number: 72
column number: 44







authorizateaccess



我的也是这么做的,为什么要报错呢?  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2007-08-29 15:40 |
mark  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-09-26 11:18 |
谢谢楼主写的这么好的文章。

关于拦截器遇到一个问题。
当我是使用struts2和spring2集成的时候,如果在action加入拦截器,
从a页面提交action 然后在转到b页面的数据就没法得到了。


helloworld.jsp

不知道有没有兄弟碰到类似的问题。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-09-27 10:19 |
谁能告诉我怎样在拦截器得到action的name?谢谢  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-09-27 10:30 |
不好意思,我找到那个函数了,是actioninvocation.getinvocationcontext().getname()可以得到action的name  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-10-14 14:26 |
ai.getaction()这个是什么意思啊,< s:radio list ="#roles.roles" value ="'employee'" name ="role" label ="role" />其中list="#roles.roles"的后一个roles是什么啊 请各位指教  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-11-13 09:19 |
在interceptor中可以修改action的属性值吗?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-11-13 16:20 |
@lasa
我有碰到这种情况,一直没找到解决的办法,最后不得不放弃使用拦截器进行权限检查  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-11-20 13:42 |
@hpyzay---
object getaction()
get the action associated with this actioninvocation
-------------
list="#roles.roles" == roles.getroles();  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-12-03 16:26 |
弱弱的问下login那个action里的session是从哪里传进去的?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-12-07 09:40 |
正确使用自定义拦截器的方法:定义好拦截器之后,在定义一个拦截器栈,并继承默认的拦截器栈  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2007-12-21 21:49 |
楼主若对j2ee技术感兴趣,我们诚邀您加入凯发天生赢家一触即发官网的技术讨论qq群!本群加入条件为1年以上java工作经验! 41732384  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-01-11 14:58 |
1  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2008-01-17 10:56 |
老大,struts.xml里的< result name ="success" > /showrole.jsp 应该是showuser.jsp吧;一开始我也是复制的,后来看,这里有点小问题,改过来就好了  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-02-14 17:41 |
请问ai.invoke()执行后返回不到showuser.jsp页面是什么原因呢?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-03-10 14:50 |
加入拦截器 action中的execute就无法调用  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-03-24 09:35 |
不是吧,struts2和struts1.2差别这么大,现在最新的netbeans6.01也只支持struts1.2..  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-04-01 13:46 |
请问如何屏蔽freemarker.template.templateexception: error reading included file admin/views/contentadm.ftl这个异常信息?  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-04-05 17:15 |
@技术交流
一个qq群搞的给公司招聘一样,还工作经验什么滴。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-04-18 11:47 |
@wsc
sb  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-04-18 11:48 |
@lastsweetop
你sb阿  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-04-22 14:59 |
读完后,想顶一下! 写得很好!   回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2008-06-04 15:25 |
通俗易懂,又有所收获了  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-06-10 11:24 |
< result name ="login" > /login.jsp
< result name ="success" > /showrole.jsp

为什么 name 属性值是 login 和 success.这是在哪里规定的呢  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-06-30 10:13 |
我想问一下:
org.apache.struts2.spring.interceptor.sessioncontextautowiringinterceptor这个拦截器的源代码在哪里呢?或者它的class文件又在哪里呢?  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2008-08-05 15:56 |
挺棒的文章,想学struts2,就来这看看了。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-08-06 14:10 |
通俗易懂  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-08-09 10:26 |
大家都说好。其实也不错。就是少了点。。。
希望多点更底层更本质的struts2的东西、、、谢谢  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-08-11 12:34 |
拦截器我是第一次用, 那个roles.java是怎么读到的??  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-08-25 21:46 |
workshop studio...开发struts1.x...不是一般强大...

ide易用度我觉得足以框架的在维护上的不足...  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-09-25 13:45 |
多谢楼主贡献  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-10-07 21:21 |
好文章,我的布署成功了,但是有一个问题:
第一次test:
(1)访问(供角色选择页),然后选择'employee',页面显示"your role is:employee"正常,
(2):不关闭ie把,ie中的login修改authorizatedaccess,我想应该页面应该还是会显示"your role is:employee",可是出现了角色选择页,与我预见不同。
why?

第二次test:
(1):半闭第一次test ie,输入,这是对的,然后选择'employee',ie中变成 role is:employee".正常
(2):不关闭ie把,ie中的login修改authorizatedaccess,页面出现"your role is:employee".正常。
(3):可是只要我把;jsessionid=796ba48c1d997979a39f53c9b665e513去了,就又回到角色选择页了
why?
谢谢各位
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-10-11 00:02 |
@lasa
你加的拦截器覆盖了缺省的拦截器,所以无法获将提交上来的数据整理到action中,你可以自己定义拦截器栈,其中包括default的拦截器栈,后面加上你自己的拦截器就ok了。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-10-18 09:39 |
谢谢您的回复,我刚学struts2,是个fresh man,您能不能贴上相关的代码配置  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2008-11-20 10:33 |



2各中的name我為什麽不能改,換一個名字就會出錯 為什麽一定是login呢 在哪裏能改呢 誰告訴我下

login.jsp裏面調action的login也改了
  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2008-11-29 10:14 |
@毕达哥拉斯
你的方法是可行的
可以自己定义自己的拦截器栈 将自己的拦截器和系统的拦截器都放在里面
引用自己的拦截器栈就行了








  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-12-09 15:54 |
文章很不错,我正在慢慢学习中,只是有几个例子调不通,max可否吧所有的例子打包发给我,icewind5312@163.com,万分感谢  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2008-12-18 08:12 |
max说的很好,建议那些不懂的人先看看struts2再说。
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2009-05-23 15:24 |
@kinghlc
对头~~~  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2009-05-23 15:24 |
@初出茅庐
关键啊~~~~  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2009-06-19 16:15 |
看了你写的东西,挺好的,懂老,thanks。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2009-09-02 01:12 |
@lasa你是不是用属性传参的。你使用拦截器后,会交黙认的拦截器覆盖。  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2010-05-14 09:25 |
写的真清楚!  回复  
  
# 非常不错[未登录] 2010-11-14 16:16 |
感谢max 。时间飞快,我是从chm 中看到的,因为有的图看不到,所以就进到网址来看。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2010-12-08 11:20 |
@高山流水
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2010-12-17 14:36 |
@steve
5293
你可以看看搜索一struts2视频,上面有。youku上找一下。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2010-12-17 14:44 |
@啊啊
那个是固定的好像是。result有几个默认值。比如 input success login估计也是,因为你看 那个拦截器那个java文件有一句 return action.login; 有不对的地方请指出。我也刚学习不久。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2011-02-09 10:39 |
楼主很专业,小弟 很佩服!  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2011-02-15 14:36 |
@毕达哥拉斯
我按照你说的方法试过了,但还是无法获得jsp页面传来的参数  回复  
  
# re: struts 2的基石——拦截器(interceptor)[未登录] 2011-02-15 14:40 |
谢谢各位,终于搞定了,原来在action中要加入这句啊……
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2011-11-13 22:31 |
为什么我按照你写的例子去配置拦截器,提示找不到文件呢?我配置了好几个都不行,不晓得为什么求解


type status report

message /struts2_interceptor/

description the requested resource (/struts2_interceptor/) is not available.
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2014-03-01 11:26 |
写的很不错,看完之后就学会了利用拦截器。  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2014-03-01 11:31 |
@ddd
可以配置全局拦截器


/login.jsp
  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2014-11-14 17:34 |
为什么跳转到点击提交后跳转到login.action就报500异常了呢  回复  
  
# re: struts 2的基石——拦截器(interceptor) 2014-11-16 17:56 |
为什么我的login类的两个私有属性一定要初始化才行,不初始化就报500错误
我得写成下面这样才行
public class login extends actionsupport implements sessionaware {
private string role = "";//初始化值
private map session = new hashtable();//实例化对象  回复  
  

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图