码迷,mamicode.com
首页 > 其他好文 > 详细

放行首页和静态资源

时间:2020-11-07 17:35:26      阅读:23      评论:0      收藏:0      [点我收藏+]

标签:父类   protect   条件   except   requests   请求   图片   启动   lock   

开始吧

1、 在自己的配置类中重写父类的 configure(HttpSecuritysecurity)方法。

SpringSecurityConfig

//重写configure方法进行配置
@Override
protected void configure(HttpSecurity httpSecurity) throws Exception {

    httpSecurity
            .authorizeRequests()                    //对请求进行授权
            .antMatchers("/index.jsp","/layui/**")  //针对 /index.jsp以及layui下的内容进行授权
            .permitAll()                            //授权的级别:可以无条件访问
            .and()
            .authorizeRequests()                    //对请求进行授权
            .anyRequest()                           //人已请求
            .authenticated()                        //需要登陆后才可以访问
            ;
}

.antMatchers("/index.jsp","/layui/**")参数可以写多个

2、 启动服务器测试效果

得到放行:

技术图片

登录是访问不到没有授权的资源的:

技术图片

放行首页和静态资源

标签:父类   protect   条件   except   requests   请求   图片   启动   lock   

原文地址:https://www.cnblogs.com/jinyuanya/p/13940638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!