SpringBoot2-[模板引擎-Thymeleaf]

简介: SpringBoot2-[模板引擎-Thymeleaf]

在这里插入图片描述

👨🏻‍🎓博主介绍:大家好,我是芝士味的椒盐,一名在校大学生,热爱分享知识,很高兴在这里认识大家🌟
🌈擅长领域:Java、大数据、运维、电子
🙏🏻如果本文章各位小伙伴们有帮助的话,🍭关注+👍🏻点赞+🗣评论+📦收藏,相应的有空了我也会回访,互助!!!
🤝另本人水平有限,旨在创作简单易懂的文章,在文章描述时如有错,恳请各位大佬指正,在此感谢!!!

@[TOC]

模板引擎-Thymeleaf

  • SpringBoot不支持JSP
  • Thymeleaf:现代化、服务端Java模板引擎
  • 引入Thymeleaf支持

    image.png

  • 基本语法:

    ### 1、表达式

    ### 2、字面量

    文本值: 'one text' , 'Another one!' ,…数字: 0 , 34 , 3.0 , 12.3 ,…布尔值: true , false

    空值: null

    变量: one,two,.... 变量不能有空格

    ### 3、文本操作

    字符串拼接: +

    变量替换: |The name is ${name}|

    ### 4、数学运算

    运算符: + , - , * , / , %

    ### 5、布尔运算

    运算符: and , or

    一元运算: ! , not

    ### 6、比较运算

    比较: > , < , >= , <= ( gt , lt , ge , le )等式: == , != ( eq , ne )

    ### 7、条件运算

    If-then: (if) ? (then)

    If-then-else: (if) ? (then) : (else)

    Default: (value) ?: (defaultvalue)

    ### 8、特殊操作

    无操作: _

    • ⚠️ 注意:当文本不在一个标签中的时候·,需要使用行内写法,比如

    image.png
    行内写法

    image.png

  • 视图解析

    • 返回值以 forward: 开始: new InternalResourceView(forwardUrl); --> 转发request.getRequestDispatcher(path).forward(request, response);
    • 返回值以 redirect: 开始: new RedirectView() --》 render就是重定向
    • 返回值是普通字符串: new ThymeleafView()--->
  • Thymeleaf使用

    • SpringBoot已经配置好了基本的Thymeleaf的属性

      
      
      @Configuration(
          proxyBeanMethods = false
      )
      @EnableConfigurationProperties({ThymeleafProperties.class})
      @ConditionalOnClass({TemplateMode.class, SpringTemplateEngine.class})
      @AutoConfigureAfter({WebMvcAutoConfiguration.class, WebFluxAutoConfiguration.class})
      
      
    • ThymeleafProperties.java

      
      
      public class ThymeleafProperties {
          private static final Charset DEFAULT_ENCODING;
          public static final String DEFAULT_PREFIX = "classpath:/templates/";
          public static final String DEFAULT_SUFFIX = ".html";
          private boolean checkTemplate = true;
          private boolean checkTemplateLocation = true;
          private String prefix = "classpath:/templates/";
          private String suffix = ".html";
          private String mode = "HTML";
      
      
    • 代码实现:

      success.html
      image.png

      ViewController.java

      
      
      @Controller
      public class ViweController {
          /**
           *<div>将参数写入请求域中,发给模版引擎</div>
           * @param model
           * @return 页面字符串和thymeleaf的前缀/template 以及后缀.html进行拼接
           */
          @GetMapping("/aitu")
          public String success(Model model){
              model.addAttribute("msg","你好世界!");
              model.addAttribute("link","https://www.baidu.com");
              return "success";
          }
      }
      
      
    • 公共代码块抽取-三种方式

      1. 首先选择使用footer标签抽取,还是使用选择器抽取

        抽取:

        image.png

        选择器抽取

        image.png

        2.选择公共代码块使用的方式
        image.png

  • 拦截器

    1. 定制拦截器需要实现HandlerInterceptor 接口

      @Slf4j
      public class LoginInterceptor implements HandlerInterceptor {
    2. 配置拦截器

      @Configuration
      public class WebConfig implements WebMvcConfigurer {
          /**

    拦截器原理
    image.png

相关文章
|
3月前
|
消息中间件 Java Kafka
Spring Boot与模板引擎:整合Thymeleaf和FreeMarker,打造现代化Web应用
【8月更文挑战第29天】这段内容介绍了在分布式系统中起到异步通信与解耦作用的消息队列,并详细探讨了三种流行的消息队列产品:RabbitMQ、RocketMQ 和 Kafka。RabbitMQ 是一个基于 AMQP 协议的开源消息队列系统,支持多种消息模型,具有高可靠性及稳定性;RocketMQ 则是由阿里巴巴开源的高性能分布式消息队列,支持事务消息等多种特性;而 Kafka 是 LinkedIn 开源的分布式流处理平台,以其高吞吐量和良好的可扩展性著称。文中还提供了使用这三种消息队列产品的示例代码。
32 0
|
4月前
|
Java 数据处理 Spring
Spring Boot中的模板引擎选择与配置
Spring Boot中的模板引擎选择与配置
|
5月前
|
Java 数据处理 Spring
Spring Boot中的模板引擎选择与配置
Spring Boot中的模板引擎选择与配置
|
6月前
|
XML Java 开发者
Spring Boot与模板引擎:整合与实战
【4月更文挑战第28天】在开发动态网站或应用时,模板引擎扮演了重要的角色。它们允许开发者将数据和HTML模板合并,从而生成动态的网页。Spring Boot支持多种模板引擎,包括Thymeleaf、Freemarker等。本篇博客将探讨Spring Boot如何整合模板引擎,并通过一个实际例子,展示如何使用Thymeleaf进行网页渲染。
283 0
|
6月前
|
Java
Springboot视图解析与模板引擎~
Springboot视图解析与模板引擎~
|
6月前
|
XML 前端开发 Java
Spring Boot的Web开发之Thymeleaf模板引擎的解析及使用(Thymeleaf的基础语法以及常用属性)
Spring Boot的Web开发之Thymeleaf模板引擎的解析及使用(Thymeleaf的基础语法以及常用属性)
133 0
|
Java
15 SpringBoot模板引擎
15 SpringBoot模板引擎
58 0
|
JSON Java 数据格式
SpringBoot3---核心特性---2、Web开发III(模板引擎、国际化、错误处理)
SpringBoot3---核心特性---2、Web开发III(模板引擎、国际化、错误处理)
|
Java PHP Python
Java:SpringBoot 整合 Pebble模板引擎渲染html
Java:SpringBoot 整合 Pebble模板引擎渲染html
263 0
Java:SpringBoot 整合 Pebble模板引擎渲染html
|
Java Spring
Java:SpringBoot 整合 Thymeleaf模板引擎渲染html
Java:SpringBoot 整合 Thymeleaf模板引擎渲染html
205 0
Java:SpringBoot 整合 Thymeleaf模板引擎渲染html