在 Struts2 中,拦截器(Interceptor)是一个非常强大的功能,它允许你在请求处理过程中插入自定义的行为。下面我将通过一个简单的例子来展示如何拦截一个 JSP 实例。
我们需要创建一个拦截器类。这个类需要实现 `Interceptor` 接口,并重写其中的 `intercept` 方法。

```java
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
public class JspInterceptor implements Interceptor {
@Override
public String intercept(ActionInvocation invocation) throws Exception {
// 在这里添加自定义逻辑,比如日志记录、用户认证等
System.out.println("







