#Aliaes拦截器
<param name="aliases">#{'firstCounty':'secondCounty'}</param>
此拦截用来进行两个action直接的数据共享
#timer拦截器
<interceptor-ref name="timer"/>
此拦截用来记录action初始化到execute执行完成的时间
#prepare拦截器
需要action实现Preparable接口,然后重写
@Override
public void prepare() throws Exception {
//在execute前执行,但执行前参数未赋值
}