admin
2020-06-04 1d0da1ba12234afb77d604fec5da94d74f402b53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ks.tool.bkz;
 
//@Configuration
//@EnableWebSecurity
public class SpringSecurityConfig
//        extends WebSecurityConfigurerAdapter
{
//
//    @Override
//    protected void configure(HttpSecurity http) throws Exception {
//        super.configure(http);
//        http.authorizeRequests()
//                .antMatchers("/").permitAll() //主路径允许访问
//                .anyRequest().authenticated()  //验证
//                .and()
//                .logout().permitAll() //注销也是运行访问
//                .and()
//                .formLogin();
//        http.csrf().disable();  //关闭csrf() 认证
//    }
//
//    @Override
//    public void configure(WebSecurity web) throws Exception {
//        super.configure(web);
//        web.ignoring().antMatchers("/js/**", "/css/**", "/images/**");
//    }
//
//    @Override
//    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
//        super.configure(auth);
//    }
}