问题遇到的现象和发生背景
1.swagger配置已经完成,登录swagger文档时会被shiro全部拦截,问题是我拦截器中所有路径都是放行
2.请各位给我讲述一下shiro的流程,说一下自定义过滤器,生命周期管理LifecycleBeanPostProcessor,会话管理器DefaultWebSessionManager这些需不需要使用
问题相关代码,请勿粘贴截图
/**
* Swagger使用的配置文件
*/
@Configuration
@EnableSwagger2
public class Swagger2Configuration {
@Bean
public Docket createRestApi(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.wutron.skybody.controller"))
.paths(PathSelectors.any())
.build();
}
//基本信息的配置,信息会在api文档上显示
private ApiInfo apiInfo(){
return new ApiInfoBuilder()
.title("skybody的接口文档")
.description("skybody相关接口的文档")
.termsOfServiceUrl("http://localhost:8080/hello")
.version("1.0")
.build();
}
}
yaml配置
swagger:
production: false
basic:
enable: true
username: admin
password: admin
运行结果及报错内容
我在浏览器里输入了localhost:8080/swagger.html 自动跳转到localhost:8080/login
我的解答思路和尝试过的方法
基本上全都尝试过,快放弃了
我想要达到的结果
解决上面的问题