在jeecms里定义某个栏目的访问地址是news
访问/jeecms/news/index.htm
就是访问这个栏目了
猜测是用filter拦截所有的.htm 
拦截下来后对URI进行分析
不过再它的web.xml知找到了3个filter
<filter-name>osivFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class><filter-name>adminAccessControl</filter-name>
<filter-class>com.jeecms.core.web.AccessControlFilter</filter-class><filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
第一个和第3个拦截了
*.do *.htm jsp *.jspa *.jspx *.php asp *.aspx是哪个filter起作用,又是如何实现的那?