public void addInterceptors(InterceptorRegistry registry){ registry.addInterceptor(new MVCInterceptor()) .addPathPatterns("/**") .excludePathPatterns("/show_login") .excludePathPatterns("/check_login_mybatis") .excludePathPatterns("/no_privilege") .excludePathPatterns("/register") .excludePathPatterns("/js/*") .excludePathPatterns("/css/*") .excludePathPatterns("/image/*") .excludePathPatterns("/css/img/*") .excludePathPatterns("/error") .excludePathPatterns("/css/font/*") .excludePathPatterns("/*.js") .excludePathPatterns("/*.html") ; }
时间: 2023-06-18 22:04:24 浏览: 163
这段代码是在Spring MVC框架中注册拦截器,其中添加了一个MVCInterceptor拦截器,该拦截器会拦截所有的请求("/**"),但排除了一些特定的路径,如登录、注册、静态资源等。
拦截器可以在请求到达Controller之前或之后对请求进行处理,用于实现一些通用的功能,例如身份验证、日志记录等。在Spring MVC中,可以通过实现HandlerInterceptor接口来自定义拦截器,并通过InterceptorRegistry进行注册。在注册时,可以指定拦截的路径和排除的路径,以及拦截器的优先级等。
相关问题
完成登录拦截器程序,即thymeleaf页面showtiom.html显示出服务器的时间,当在浏览器地址栏上写入”http://localhost:8080/show“或”http://localhost:8080/time“,运行的是showtiom.html
首先,需要创建一个登录拦截器,用来检查用户是否已经登录。可以创建一个类,继承自HandlerInterceptorAdapter,并实现preHandle方法。在该方法中,可以获取session对象,检查其中是否已经保存了用户信息,如果没有,则重定向到登录页面。
```
public class LoginInterceptor extends HandlerInterceptorAdapter {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
HttpSession session = request.getSession();
if (session.getAttribute("user") == null) {
response.sendRedirect("/login");
return false;
}
return true;
}
}
```
接着,在Spring Boot的配置类中,将该拦截器加入到拦截器链中。
```
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginInterceptor()).addPathPatterns("/show", "/time");
}
}
```
最后,在控制器中,处理/show和/time的请求,返回showtime.html页面,并在该页面中显示服务器时间。
```
@Controller
public class ShowTimeController {
@RequestMapping(value = {"/show", "/time"})
public String showTime(Model model) {
Date now = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
String formattedDate = dateFormat.format(now);
model.addAttribute("serverTime", formattedDate);
return "showtime";
}
}
```
在showtime.html页面中,可以使用Thymeleaf模板语言来显示服务器时间。
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Show Time</title>
</head>
<body>
<h1>Server Time: <span th:text="${serverTime}"></span></h1>
</body>
</html>
```
现在,在浏览器中访问http://localhost:8080/show或http://localhost:8080/time时,如果用户未登录,则会被重定向到登录页面。如果已经登录,则会显示服务器时间。
阅读全文