| | |
| | | .antMatchers("/api/customer/flower/up/stock").permitAll() |
| | | .antMatchers("/api/filmset/**").permitAll() |
| | | .antMatchers("/api/filmWorks/**").permitAll() |
| | | .antMatchers("/api/film/category/**").permitAll() |
| | | .antMatchers("/api/filmLocation/**").permitAll() |
| | | .antMatchers("api/pub/customer/home/**").permitAll() |
| | | .antMatchers("/api/customer/point/goods/**").permitAll() |
| | |
| | | // 短信 |
| | | .antMatchers("/v2/tos/sms/**").permitAll() |
| | | |
| | | .antMatchers("/api/film/category/list").permitAll() |
| | | |
| | | .antMatchers("/api/**").authenticated();//配置访问控制,必须认证过后才可以访问 |
| | | |
| | | } |