springmvc拦截器 /** 和 /* 区别 作者:马育民 • 2021-02-22 09:41 • 阅读:10097 ``` ``` - `path="/mgr/**"`:表示访问 `/mgr/` 下的资源,及 **子路径** 下的资源,都会 **拦截** 如:`/mgr/list`、`/mgr/user/list` 都会被拦截 - `path="/mgr/*"`(注意一个`*`):表示访问 `/mgr/` 下的资源会 **拦截**;但 **子路径** 下的资源,**不会拦截** 如:`/mgr/list` 会被拦截,但 `/mgr/user/list` **不会拦截** 原文出处:http://malaoshi.top/show_1IXdZE1U8V1.html