//
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {
HttpServletRequest request = (HttpServletRequest) req;
String actionPath = request.getRequestURI().substring(request.getContextPath().length());
//1.获取 ActionInvoke
MappingDefine define = this.rootController.findMapping(new WebFindMapping(actionPath, request.getMethod()));
if (define == null) {
chain.doFilter(request, resp);
return;
}
//2.执行调用