美文网首页
SpringBoot+Thymeleaf

SpringBoot+Thymeleaf

作者: 忘记_3a6a | 来源:发表于2020-03-17 20:41 被阅读0次
  • pom.xml
 <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>
  • application.yml
spring:
  thymeleaf:
    cache: false    # 关闭页面缓存
    mode: LEGACYHTML5  # 使用非严格的html
    encoding: UTF-8
    servlet:
      content-type: text/html

相关文章

网友评论

      本文标题:SpringBoot+Thymeleaf

      本文链接:https://www.haomeiwen.com/subject/pypxyhtx.html