|
|
@@ -78,6 +78,8 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
.antMatchers("/MP_verify*").permitAll()
|
|
|
.antMatchers("/admin/**").permitAll()
|
|
|
.antMatchers("/dataCenter/**").permitAll()
|
|
|
+ .antMatchers("/sysConfig/all").permitAll()
|
|
|
+ .antMatchers("/sysConfig/get/*").permitAll()
|
|
|
// all other requests need to be authenticated
|
|
|
.anyRequest().authenticated().and()
|
|
|
// make sure we use stateless session; session won't be used to
|