我已经将我的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版本中该类的替代品是什么