其他分享
首页 > 其他分享> > Shiro整合swagger, Controller中的方法看不见

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

标签:anon,Controller,put,swagger,filterMap,Shiro
来源: https://blog.csdn.net/C_wl000641/article/details/117791190