当我尝试访问swagger页面时,我正在弹出浏览器身份验证弹出窗口。
Spring启动3.0.2
浏览器认证弹出图像
如果我正确理解了您的问题,您需要禁用Swagger的安全检查。您可以为此目的管理WebSecurityConfiguration,例如:
@Override
public void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers(
"/swagger-ui.html/**",
"/swagger-resources/**")
.permitAll();
}
您也可以在此处查看相同的问题。