Administrator
2026-06-02 b6bc83543f007d1295cf7cfe46e4991b7f2a8cc4
src/main/java/com/xcong/excoin/configurations/security/WebSecurityConfig.java
@@ -50,10 +50,10 @@
                .antMatchers("/api/member/memberForgetPwd").permitAll()
                .antMatchers("/api/member/memberCoinInfoList").permitAll()
                .antMatchers("/api/member/getPcVersionInfo").permitAll()
                .antMatchers("/api/member/getAppVersionInfo").permitAll()
                .antMatchers("/api/orderCoin/searchSymbolResultList").permitAll()
                .antMatchers("/api/orderCoin/findCollect").permitAll()
                .anyRequest().authenticated()
                .and().apply(securityConfiguereAdapter());
                .anyRequest().authenticated();
    }
    @Override
@@ -76,7 +76,4 @@
        return new CustomAuthenticationEntryPoint();
    }
    public TokenConfigurer securityConfiguereAdapter() {
        return new TokenConfigurer();
    }
}