SpringBoot2.x中静态资源会被自定义拦截器拦截

前言

今天用Sping Boot2.0.3写项目编写WebMvc的JavaConfig时,SpringBoot2.x中静态资源会被自定义拦截器拦截,研究了大半天,总结一下我的方法,若有更好的方法欢迎讨论,向大佬们学习一下🖊

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
/**
* 设置视图映射(页面跳转)
*/
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/index.html").setViewName("login");
registry.addViewController("/").setViewName("login");
registry.addViewController("/main.html").setViewName("dashboard");
}

/**
* 配置拦截器
* SpringBoot-2.x和Spring5.0的静态资源也会执行自定义的拦截器,因此在配置拦截器的时候需要指定排除静态资源的访问路径
* 因此配置拦截器的时候还要拦截静态资源的路径
*/
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginHandleInterceptor()).addPathPatterns("/**") // 拦截全局路径请求,下为放行某些url的请求
.excludePathPatterns("/", "/index.html", "/user/login", "/resources/**"); // 1. 注意这个/resources/**是我自定义的资源路径 2. 不要拦截需要请求的路径,比如这里的/user/login

}


/**
* 定义静态资源URL
* 使用了自定义拦截器后SpringBoot2.x的静态资源也会使用这个拦截器,
* 而且好像屏蔽了自动配置的静态资源Handlers设置,
* 上面的拦截器移除似乎需要这个方法进行解释路径url,之后才能在拦截器里才能使用这些url。
*/
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
/*
* 在这里注册了一个静态资源url为/resources/**,但是这样的话,每个静态资源前面都需要加上/resources/前缀
*/
registry.addResourceHandler("/resources/**").addResourceLocations("classpath:/META-INF/resources/", "classpath:/static/", "classpath:/resources/", "classpath:/public/");

}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<!-- 注意这里路径因为上面的WebMvcCOnfig类中设置了静态资源定位URL,为/resources/开头,所以要加上/resource/ -->
<link href="/css/bootstrap.min.css" th:href="@{/resources/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/css/signin.css" th:href="@{/resources/css/signin.css}" rel="stylesheet">
</head>
<body class="text-center">

<body class="text-center">
<form class="form-signin" th:action="@{/user/login}" th:method="post">
<img class="mb-4" th:src="@{/resources/images/bootstrap-solid.svg}" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tips}">Please sign in</h1>
<!-- 错误消息提示 -->
<p style="color: red;" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p>
<label for="inputEmail" class="sr-only">Username</label>
<input type="text" name="username" id="inputEmail" class="form-control" placeholder="Username" th:placeholder="#{login.username}" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input name="password" type="password" id="inputPassword" class="form-control" placeholder="Password" th:placeholder="#{login.password}" required>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me"> [[#{login.remember}]]
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit" th:text="#{login.btn}">Sign in</button>
<p class="mt-5 mb-3 text-muted">&copy; 2017-2018</p>
<a class="btn btn-sm" th:href="@{/index.html(l='zh_CN')}">中文</a>
<a class="btn btn-sm" th:href="@{/index.html(l='en_US')}">English</a>
</form>
</body>
</html>

本文标题:SpringBoot2.x中静态资源会被自定义拦截器拦截

文章作者:Aaron.H

发布时间:2018年07月17日 - 20:07

最后更新:2018年09月06日 - 16:09

原始链接:https://uncleaaron.github.io/Blog/JavaWeb/SpringBoot2.x中拦截器对静态资源的影响/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。