Spring-secrity配置安全类

package com.example.demo.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 gf
 */
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity
                //所有security全注解配置实现的开端,表示开始说明需要的授权
                        .authorizeRequests()
                //permitAll()表示这个不需要验证,全部放行 分两个部分 第一部分是拦截的路径 第二部分是访问该路径该路径需要的权限
                        .antMatchers("/**").permitAll()
                //任何的请求 认证后 才可以访问
                        .anyRequest().authenticated()
                //固定写法 表示使csrf拦截失效
                        .and().csrf().disable();

    }

}

你可能感兴趣的:(Spring-secrity配置安全类)