如题,之前的项目用到一个拦截,所以配了个
<filter>
<filter-name>osivFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
</filter><filter-mapping>
<filter-name>osivFilter</filter-name>
<url-pattern>*.htm</url-pattern>
</filter-mapping>
用来拦截所有.htm结尾的
但是现在项目需求发生改变,之前的.htm还按以前的拦截,现在需要给一个目录比如rar下的htm配置不拦截,应该怎样配置啊。。求指点,谢谢。