若web.xml配置的是拦截所有请求
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
但有的请求不想拦截比如 /services/*
可以在struts.xml配置
<constant name="struts.action.excludePattern" value="/services.*"></constant>