|
|
package com.sunyo.wlpt.cgoasm.provide.config;
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
|
|
|
|
/**
|
|
|
* @author 子诚
|
|
|
* Description:SpringSecurity 权限配置框架
|
|
|
* 时间:2020/6/8 18:42
|
|
|
*/
|
|
|
@EnableWebSecurity
|
|
|
@Configuration
|
|
|
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
@Override
|
|
|
protected void configure(HttpSecurity http) throws Exception {
|
|
|
http.authorizeRequests()
|
|
|
.antMatchers("/","/exit/**","/cgoasm/**","/ws/**")
|
|
|
.permitAll()
|
|
|
.and()
|
|
|
.csrf().disable();
|
|
|
}
|
|
|
} |
...
|
...
|
|