目录

问题描述

方法一、配置文件问题

方法二、@RestController

方法三、为变量加上get

方法四、pom.xml文件下的build配置

解决方法

问题描述

在开发springboot的时候,进行modelAndView 视图层映射的时候,一直出现

An error happened during template parsing (template: "class path resource [templates/index.html]")

模板解析过程中发生错误(模板:“类路径资源[templates/index.html]”)

方法一、配置文件问题

    spring.thymeleaf.prefix=classpath:/templates/
    spring.thymeleaf.suffix=.html
    spring.thymeleaf.servlet.content-type=text/html
    spring.thymeleaf.encoding=utf-8
    spring.thymeleaf.mode=LEGACYHTML5
    spring.thymeleaf.cache=false
    spring.mvc.static-path-pattern=/**
    spring.resources.static-locations=classpath:/static/

方法二、@RestController

@Controller和@RestController功能不一样,将@Controller修改为@RestController在加上@ResponseBody

方法三、为变量加上get

说在映射的时候实体类没有get方法,为变量加上get就可以了(结果我本来就有get方法的)

方法四、pom.xml文件下的build配置

还有说在pom.xml文件下的build配置(都不是这个错误的解决方案)

    <resources>
        <resource>
            <directory>sre/main/resources</directory>
        </resource>
    </resources>

因为加了

    https: xmlns:https="http://www.w3.org/1999/xhtml"
    和
    xmlns:th="http://www.thymeleaf.org"
     

解决方法


把https: xmlns:https="http://www.w3.org/1999/xhtml"删除

总结了下,一般系统出现以下错误

An error happened during template parsing (template: "class path resource [templates/index.html]")

大家可以去看看视图层,并不是java代码出现错误.

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐