IE浏览器NTLM身份验证中的401响应

时间:2017-11-14 04:38:42

标签: internet-explorer

我的应用程序基于spring bootTomcat并且NTLM身份验证。 IE中的身份验证响应中的某处在IE中提供401。对于chrome,它会被传递并显示响应200

以下是回复。

enter image description here

1 个答案:

答案 0 :(得分:-2)

固定。

解决方案如下: 您需要覆盖WebSecurityConfigurerAdapter中的WebSecurity-Configure-Method并排除某个文件夹:如下所示:

@Override
public void configure(final WebSecurity web) throws Exception {

  web.ignoring()
  .antMatchers("/static/**")
  .antMatchers("/images/**")
      .antMatchers("/js/**")
      .antMatchers("/json/**")
      .antMatchers("/inclu/**")
      .antMatchers("/lib/**");

}