springboot 静态资源放行安全吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 静态资源放行安全吗?相关的知识,希望对你有一定的参考价值。
参考技术A 安全。分为三步:第一步准备静态资源,第二步修改index.html,第三步修改SpringSecurity配置文件配置静态资源放行的情况
<!--静态资源全部放行--> <mvc:default-servlet-handler></mvc:default-servlet-handler> 上面这一种替代下面的N种方法 <!--<mvc:resources mapping="/js/*" location="/js/"></mvc:resources>--> <!--<mvc:resources mapping="/css/*" location="/css/"></mvc:resources>--> <!--<mvc:resources mapping="/images/*" location="/images/"></mvc:resources>--> 。。。。。。。
以上是关于springboot 静态资源放行安全吗?的主要内容,如果未能解决你的问题,请参考以下文章
spring boot 整合security 4 怎么设置忽略的静态资源