SpringBoot+Thymeleaf

2020-03-17  本文已影响0人  忘记_3a6a
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.nekohtml</groupId>
            <artifactId>nekohtml</artifactId>
            <version>1.9.22</version>
        </dependency>
spring:
  thymeleaf:
    cache: false    # 关闭页面缓存
    mode: LEGACYHTML5  # 使用非严格的html
    encoding: UTF-8
    servlet:
      content-type: text/html
上一篇 下一篇

猜你喜欢

热点阅读