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


    转自https://blog.csdn.net/qq_41426326/article/details/88837112

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

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

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

    在向index.html映射的时候出现错误,小编在和其他程序员一样打开了百度开始搜索,有各种说法

    1.配置文件问题.(我重新看了一遍确定没有问题,但是还是错误)

    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/
    2.说是@Controller和@RestController功能不一样,将@Controller修改为@RestController在加上@ResponseBody(依然无效)、

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

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

    <resources>
    <resource>
    <directory>sre/main/resources</directory>
    </resource>
    </resources>
    最后小编早上智商最高峰的时候发现了这个小小小问题

    在这附上小编index.html的文件开头,就是因为加了

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

    xmlns:th="http://www.thymeleaf.org"
    导致调用的时候原本要调用第二句话的代码调用了第一句代码中的方法发生错误,把第一句代码删除就可以了

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

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

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

  • 相关阅读:
    UI第十七讲.图片异步加载(包括第三方), KVO, KVC
    第二十一讲.UICollectionView(集合视图)以及瀑布流效果, 通知中心(NSNotificationCenter).
    UI第十九讲:数据库
    UI第十八讲.初级数据持久化 (沙盒, 简单写入对象, 归解档, NSUserDefaults写入读取文件 )
    第十四讲(下) 可视化方式的实现通讯录.(及storyboard方式)
    第十六讲.网络编程 (HTTP协议)
    wslgit
    MyBatis时间比较
    layer开启与关闭加载层
    MyBatis中choose when正确写法
  • 原文地址:https://www.cnblogs.com/ffaiss/p/10855611.html
Copyright © 2020-2023  润新知