Shiro整合swagger, Controller中的方法看不见

Shiro整合swagger, Controller中的方法看不见

Shiro + Swagger2.x,Swagger页面无法查看接口

解决办法:

///swagger2接口权限 开放
filterMap.put("/swagger-ui.html",“anon”);
filterMap.put("/static/", “anon”);
filterMap.put("/swagger/
",“anon”);
filterMap.put("/webjars/", “anon”);
filterMap.put("/swagger-resources/
",“anon”);
filterMap.put("/v2/**",“anon”);
注意:一定要注意 上面 这个 我打红色的地方,这个不加,swagger界面会出来,但是看不到里面,不会生效!!!

https://blog.csdn.net/chl123456789/article/details/100889690

上一篇:Apache Shiro实现用户登录功能


下一篇:Shiro实现Basic认证