| | |
| | | .and()
|
| | | .authorizeRequests()
|
| | | .antMatchers(HttpMethod.OPTIONS, "/**").permitAll()
|
| | | .antMatchers("/loginOutCenter").permitAll()
|
| | | .antMatchers("/login").permitAll()
|
| | | .antMatchers("/registerOutCenter").permitAll()
|
| | | .antMatchers("/register").permitAll()
|
| | | .antMatchers("/swagger**/**").permitAll()
|
| | | .antMatchers("/webjars/**").permitAll()
|
| | |
| | | .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()
|
| | | .antMatchers("/api/orderCoin/deal/list").permitAll()
|
| | | .antMatchers("/api/helpCenter/**").permitAll()
|
| | | .antMatchers("/trade/**").permitAll()
|
| | | .anyRequest().authenticated()
|
| | | .and().apply(securityConfiguereAdapter());
|
| | | }
|