这些类之间有什么区别?我知道WebSecurityConfigurerAdapter用于自定义我们应用程序中的“安全性”。
我做了什么:
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
CustomUserDetailsService customUserDetailsService;
@Autowired
private JwtAuthenticationEntryPoint unauthorizedHandler;
Run Code Online (Sandbox Code Playgroud)
但是我不明白AuthorizationServerConfigurerAdapter的含义。
我读了几篇文章,但听不懂。