SpringBoot如何设置不拦截static目录下的静态资源呢?

戚薇 SpringBoot 发布时间:2023-05-11 17:34:48 阅读数:2276 1
下文笔者讲述Springboot设置static目录可实现未登录访问的方法分享,如下所示
我们只需继承 WebMvcConfigurer类,然后重写addInterceptors()方法
     即可实现指定目录下的静态资源可直接访问
例:
@Configuration
public class LoginConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
	registry.addInterceptor(new LoginInterceptor())
	.addPathPatterns("/**")   // 所有路径都被拦截
	.excludePathPatterns(
			"/login",
			"",
			"/",
			"/user/login",
			"/java265static",
			"/teststatic",
			"/static/lib/**");// 静态资源请求不拦截
    }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202305/6417.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者