| | |
| | | .authorizeRequests() |
| | | .antMatchers("/api/login/**").permitAll() |
| | | .antMatchers("/api/pub/**").permitAll() |
| | | .antMatchers("/api/advertisement/**").permitAll() |
| | | .antMatchers("/api/ua/**").permitAll() |
| | | .antMatchers("/api/code/value").permitAll() |
| | | .antMatchers("/api/code/multiple").permitAll() |
| | |
| | | .antMatchers("/api/config/content/list/view").permitAll() |
| | | .antMatchers("/api/v2/coupon/home/alert").permitAll() |
| | | .antMatchers("/api/customer/partner/name").permitAll() |
| | | .antMatchers("/api/v2/coupon/app/home/alert").permitAll() |
| | | .antMatchers("/v2/config-param/base/info").permitAll() |
| | | .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 |
| | | |
| | | } |