91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

springboot配置thymeleaf的方法是什么

小億
87
2023-11-28 02:17:43
欄目: 編程語言

配置Thymeleaf的方法有以下幾步:

  1. 添加Thymeleaf依賴:在pom.xml文件中添加Thymeleaf的依賴配置。例如:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. 配置Thymeleaf模板的位置:在application.properties或application.yml文件中添加以下配置項,指定Thymeleaf模板的位置,默認為classpath:/templates/。例如:
spring.thymeleaf.prefix=classpath:/templates/
  1. 配置Thymeleaf緩存:在application.properties或application.yml文件中添加以下配置項,用于配置Thymeleaf的緩存,默認為開啟緩存。例如:
spring.thymeleaf.cache=false
  1. 配置Thymeleaf模板的后綴:在application.properties或application.yml文件中添加以下配置項,指定Thymeleaf模板的后綴,默認為.html。例如:
spring.thymeleaf.suffix=.html
  1. 配置Thymeleaf視圖解析器:在配置類中添加@Bean注解配置Thymeleaf視圖解析器。例如:
@Configuration
public class ThymeleafConfig {
    @Bean
    public ViewResolver thymeleafViewResolver() {
        ThymeleafViewResolver viewResolver = new ThymeleafViewResolver();
        viewResolver.setTemplateEngine(templateEngine());
        viewResolver.setCharacterEncoding("UTF-8");
        return viewResolver;
    }

    @Bean
    public ITemplateEngine templateEngine() {
        SpringTemplateEngine templateEngine = new SpringTemplateEngine();
        templateEngine.setTemplateResolver(templateResolver());
        return templateEngine;
    }

    @Bean
    public ITemplateResolver templateResolver() {
        ClassLoaderTemplateResolver templateResolver = new ClassLoaderTemplateResolver();
        templateResolver.setPrefix("templates/");
        templateResolver.setCacheable(false);
        templateResolver.setSuffix(".html");
        templateResolver.setTemplateMode(TemplateMode.HTML);
        templateResolver.setCharacterEncoding("UTF-8");
        return templateResolver;
    }
}

以上是配置Thymeleaf的基本步驟,根據具體需求可以添加其他配置項。

0
云南省| 津市市| 黄梅县| 绥阳县| 察哈| 延长县| 综艺| 广宁县| 新昌县| 法库县| 华蓥市| 阿城市| 疏附县| 德令哈市| 定远县| 澄城县| 南陵县| 阿坝| 榆社县| 台安县| 揭东县| 陆良县| 佳木斯市| 樟树市| 灌南县| 长宁县| 麻江县| 雅安市| 全南县| 西峡县| 尉氏县| 乐亭县| 银川市| 吉安县| 敦化市| 铅山县| 湟中县| 会东县| 林口县| 永寿县| 安图县|