Spring Boot入门教程(十九): Thymeleaf

一:Thymeleaf

Spring官方也推荐使用Thymeleaf,Thymeleaf最大的特点是能够直接在浏览器中打开并正确显示模板页面,而不需要启动整个Web应用。

JSP技术Spring Boot官方是不推荐的,原因有三:

  • tomcat只支持war的打包方式,不支持可执行的jar。
  • Jetty 嵌套的容器不支持jsp
  • Undertow
  • 创建自定义error.jsp页面不会覆盖错误处理的默认视图,而应该使用自定义错误页面

1. pom.xml


	org.springframework.boot
	spring-boot-starter-thymeleaf


	org.springframework.boot
	spring-boot-starter-web


	org.projectlombok
	lombok
	true

spring-boot-starter-thymeleaf会自动包含spring-boot-starter-web,所以我们就不需要单独引入web依赖了

你可能感兴趣的:(Spring,Boot,Spring,Boot入门教程精讲)