1.将filter 注册到spring 中成为一个组件,class 上加注解@Component
2.在web.xml 中将filter的配置指向spring 中的org.springframework.web.filter.DelegatingFilterProxy。由spring 来操作。
3.在applicationContext.xml中配置扫描filter的包。
注意:web xml 里的filter-name 名字一定要和类名一直。开头字母小写
1.将filter 注册到spring 中成为一个组件,class 上加注解@Component
2.在web.xml 中将filter的配置指向spring 中的org.springframework.web.filter.DelegatingFilterProxy。由spring 来操作。
3.在applicationContext.xml中配置扫描filter的包。
注意:web xml 里的filter-name 名字一定要和类名一直。开头字母小写