Vert.x - SpringBoot 整合 vertx 使用 thymeleaffreemarker 模板引擎
Posted 小毕超
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vert.x - SpringBoot 整合 vertx 使用 thymeleaffreemarker 模板引擎相关的知识,希望对你有一定的参考价值。
一、模板引擎
在 SpringMVC 项目中使用模板引擎,使用较多的应该是 thymeleaf
及 freemarker
了吧,虽然现在前后端分离的浪潮已经席卷而来,但对于 SEO 或者 页面静态话来说,后端的模板引擎还是具有一定的作用力。本篇文章继续上篇文章中搭建的 SpringBoot
项目中继续讲解,因此在看本篇文章之前,确保已经搭建了上篇文章的项目。
下面是上篇文章的地址:
https://blog.csdn.net/qq_43692950/article/details/124076793
下面分别对 thymeleaf
及 freemarker
的使用进行实践。
二、thymeleaf 模板引擎
首先引入 thymeleaf
模板引擎的依赖:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-templ-thymeleaf</artifactId>
<version>$vertx-version</version>
<classifier>shaded</classifier>
</dependency>
然后声明 thymeleaf
引擎:
@Bean
public ThymeleafTemplateEngine thymeleafTemplateEngine(Vertx
以上是关于Vert.x - SpringBoot 整合 vertx 使用 thymeleaffreemarker 模板引擎的主要内容,如果未能解决你的问题,请参考以下文章