被我用烂的DEBUG调试技巧,专治各种搜索不到的问题( 二 )

/** * 资源服务器配置 * Created by macro on 2020/6/19. */@AllArgsConstructor@Configuration@EnableWebFluxSecuritypublic class ResourceServerConfig {    private final RestAuthenticationEntryPoint restAuthenticationEntryPoint;    @Bean    public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {       //省略若干代码...       //自定义处理JWT请求头过期或签名错误的结果       http.oauth2ResourceServer().authenticationEntryPoint(restAuthenticationEntryPoint);       //省略若干代码...       return http.build();    }}总结对于一时找不到解决方法的问题,我推荐使用DEBUG源码的方式来解决 。首先寻找一个突破口,可以从你熟悉的一些类中去寻找一个必定会执行的方法,然后打断点,进行DEBUG,从调用的栈信息中查找出关键的类,之后通过这些关键类顺藤摸瓜就能找解决方法了!




推荐阅读