在Spring Boot App中保护静态资源

时间:2018-11-21 14:24:42

标签: spring-boot spring-security

我想保护Spring Boot应用程序的“静态”文件夹中的所有内容。

我在安全配置中尝试了各种组合,包括:

.antMatchers("/resources/**").authenticated()
.antMatchers("/resources/static/**").authenticated()
.antMatchers("/static/**").authenticated()

这些都不起作用。正确的方法是什么?

1 个答案:

答案 0 :(得分:0)

通过

禁用默认的spring-boot资源映射
spring.resources.add-mappings=false

application.properties