spring boot集成模板引擎Thymeleaf中遇到的坑

Posted 雪浪snowWave

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot集成模板引擎Thymeleaf中遇到的坑相关的知识,希望对你有一定的参考价值。

首先,所有html文件都要放在固定路径下才能被正确读取到,/main/java/resources/templates这个路径下,而且html所有的标签必须闭合,否则启动报错

今天调用模板的时候遇到了问题,模板名为hello.html,可是访问时候一直报404,那肯定是没有正确被controller返回,所以是controller中没有写对,下面是Controller的代码

 @RequestMapping("/aaa")
    public String hello(ModelMap map) {
        // 加入一个属性,用来在模板中读取
        map.addAttribute("host", "http://blog.didispace.com");
        // return模板文件的名称,对应src/main/resources/templates/index.html
        return "hello";
    }

想在访问localhost:8080/aaa时,正确返回hello.html的话,controller的方法名返回值一定要和html同名!!!!

以上是关于spring boot集成模板引擎Thymeleaf中遇到的坑的主要内容,如果未能解决你的问题,请参考以下文章

[SpringBoot] Spring Boot 最佳实践模板引擎Thymeleaf集成

[SpringBoot] Spring Boot 最佳实践模板引擎Thymeleaf集成

spring boot集成模板引擎Thymeleaf中遇到的坑

springboot 集成 activiti 流程引擎

初入spring boot(四 )web项目

Spring Boot 2.0 使用模板引擎返回JSP页面实战