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);
|
// }
|
}
|