配置一:
DelegatingFilterProxy
org.springframework.web.filter.DelegatingFilterProxy
targetBeanName
myFilter //自己过滤器的名字
targetFilterLifecycle
true
DelegatingFilterProxy
/*
配置二:
myFilter
org.springframework.web.filter.DelegatingFilterProxy
targetFilterLifecycle
true
DelegatingFilterProxy
/*
方法一或者二不同的地方就是在web.xml中的写法不同而已没有太大的区别,配完web.xml之后还要配置 applicationContext.xml中的bean。
applicationContext.xml配置:
//指名具体的filter类
//需要注入的具体参数
如果使用注解:
@Component("tjFilter")
public class TjFilter implements Filter {
@Resource(name="historyManager")
private HistoryManager historyManager;
public void destroy() {
// TODO Auto-generated method stub
}
.....
}
分享到:
2011-09-05 18:30
浏览 2854
评论