博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2基础---->自定义拦截器
阅读量:5157 次
发布时间:2019-06-13

本文共 940 字,大约阅读时间需要 3 分钟。

  这一章,我们开始struts2中拦截器的学习。

自定义拦截器

一、增加一个自定义的拦截器为类

package com.huhx.interceptor;import com.opensymphony.xwork2.ActionInvocation;import com.opensymphony.xwork2.interceptor.AbstractInterceptor;public class RegisterInterceptor extends AbstractInterceptor {    private static final long serialVersionUID = 1L;    @Override    public String intercept(ActionInvocation invocation) throws Exception {        System.out.println("拦截器开始运行....");        String resultString = invocation.invoke();        System.out.println("拦截器结束运行....");        return resultString;    }}

 二、修改struts.xml配置文件,内容如下:

/huhx.jsp

 三、访问地址:http://localhost:8080/StrutsTest1/hello.action,后台打印地址:

拦截器开始运行....hello world.拦截器结束运行....

 

 友情链接

 

转载于:https://www.cnblogs.com/huhx/p/baseStruts2.html

你可能感兴趣的文章
iframe自适应高度的多种方法方法
查看>>
Dbzoj#3188. [Coci 2011]Upit
查看>>
SOAP 与 restful service区别
查看>>
centos 6.5 联网
查看>>
Java入门 手把手教你配置环境变量
查看>>
报数游戏
查看>>
正则替换 php js
查看>>
2018.12.17断点调试,js引入,变量定义,三种弹出框,数据类型,数据类型转换
查看>>
洛谷1828 香甜的黄油
查看>>
BZOJ 1296(SCOI 2009) 粉刷匠
查看>>
python 全栈开发,Day34(基于UDP协议的socket)
查看>>
GIS在石油行业中的应用
查看>>
Android流量统计
查看>>
iOS UIScrollview 和侧滑手势冲突解决方法
查看>>
三招提高.NET网站性能
查看>>
P4111 [HEOI2015]小Z的房间
查看>>
React-Native 学习之 Flex布局(转)
查看>>
代码书写规则
查看>>
python3----splitlines
查看>>
linux进程管理
查看>>