目录
模板优先级
测试代码
创建01.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>01.html--thymeleaf</h1>
</body>
</html>
创建02.ftlh:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>02.ftlh--freemarker</h1>
</body>
</html>
创建03.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>03.jsp</h1>
</body>
</html>
分别将Thymeleaf和FreeMarker模板放在templates目录下,将jsp文件放在webapp目录下
接着我们编写Controller:
@Controller
public class HelloController {
@GetMapping("/{path}")
public String gethello(@PathVariable String path){
return path;
}
}
编写配置类:
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/",".jsp");
//registry.order(1);
}
}
我们在ContentNegotiatingViewResolver类中打上断点:
Thymeleaf与FreeMarker同时存在
- 当请求http://localhost:8080/03
FreeMarker和thymeleaf优先级相同,FreeMarker的位置靠前一点,所以先进行的是FreeMarker视图解析器的遍历,由于checksource方法,所以FreeMarker会检查视图是否可用,如果可用就会加入到候选视图中去,当请求01时,FreeMarker的checksource方法发现视图不可用,所以并没有加入到候选视图中,之后进行thymeleaf视图解析器的遍历,因为thymeleaf的不检查视图是否存在,所以不管视图有没有问题,都会加入到候选视图中去,当请求02时,发现候选视图中也有thymeleaf视图(但是这个视图是有问题的不能使用的),最后进入getBestView方法,找出最合适的视图,按照MediaType和模板的优先级
Jsp与FreeMarker同时存在
我们将Jsp的优先级改为1,将高于FreeMarker的优先级
当我们请求01时因为我们去掉了Thymeleaf依赖所以没有页面显示;当我们请求02时,因为Jsp的优先级高于FreeMarker,加上Jsp的因为thymeleaf的checksource方法永远返回TRUE,所以不管视图有没有问题,都会加入到候选视图中去,最后进入getBestView方法时,按照优先级Jsp被优先匹配到,但是视图不可用,所以找不到页面
Thymeleaf与Jsp同时存在
- 当请求http://localhost:8080/01
- 当请求http://localhost:8080/02
- 当请求http://localhost:8080/03
因为jsp的优先级低于Thymeleaf,thymeleaf的不检查视图是否存在,所以不管视图有没有问题,都会加入到候选视图中去,每一次请求都只有Thymeleaf模板,但是在03请求时候的视图有问题,找不到,所以报错
解决方法:
创建HandelInternalResourceViewExist类:
public class HandelInternalResourceViewExist extends InternalResourceView {
@Override
public boolean checkResource(Locale locale) throws Exception {
File file = new File(getServletContext().getRealPath("/") + getUrl());
return file.exists();
}
}
修改Jsp优先级:
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/",".jsp").viewClass(HandelInternalResourceViewExist.class);
registry.order(1);
}
}
Thymeleaf、Jsp、FreeMarker同时存在
三个模板同时存在,只需要将两个模板使他们都具有检测能力,同理编写以下代码就可以共存
解决方法:
创建HandelInternalResourceViewExist类:
public class HandelInternalResourceViewExist extends InternalResourceView {
@Override
public boolean checkResource(Locale locale) throws Exception {
File file = new File(getServletContext().getRealPath("/") + getUrl());
return file.exists();
}
}
修改Jsp优先级:
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/",".jsp").viewClass(HandelInternalResourceViewExist.class);
registry.order(1);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/15770.html