春季启动版本2.0.1中的Http401AuthenticationEntryPoint的替代方法

时间:2018-10-16 18:40:36

标签: spring spring-boot spring-security

我已经将我的spring boot项目升级到了版本2.0.1.RELEASE。 以前,我将以下代码用于1.5.8版的Spring Boot。

  http.authorizeRequests().antMatchers(HttpMethod.OPTIONS,API_PATTERN).permitAll()
                        .antMatchers(API_PATTERN).authenticated()
                        .antMatchers("/**").denyAll()
                    .cors().and()
                    .exceptionHandling().authenticationEntryPoint(
                        new Http401AuthenticationEntryPoint("Bearer"),
                        new AntPathRequestMatcher(API_PATTERN)).and()
                    .formLogin().disable()
                    .headers()
                        .xssProtection().block(true).and()
                        .referrerPolicy()

升级后,它抛出一个错误,指出没有名称为 Http401AuthenticationEntryPoint 。在2.0.1版本中该类的替代品是什么

0 个答案:

没有答案