其他分享
首页 > 其他分享> > debug: Thymeleaf页面无法正常解析显示An error happened during template parsing

debug: Thymeleaf页面无法正常解析显示An error happened during template parsing

作者:互联网

查看控制台报错信息

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

这是说解析模板出错了。

Exception evaluating SpringEL expression: "hospitalSet.hoscode" (template: "hospitalSet/index" - line 17, col 80)

这是说计算 hospitalSet.hoscode 这个表达式的时候出现异常了。

Property or field 'hoscode' cannot be found on null

这是说 从 null 里找不到这个 属性,很明显,这是空指针异常。

再看前端页面怎么写的

<input type="text" name="hoscode" id="hoscode" th:value="${hospitalSet.hoscode}" class="form-control"/>

使用 ${hospitalSet.hoscode} 取值时出错了,因为当 hospitalSet 为 null 时,就会产生空指针异常。

改为以下方式取值即可。加个?先判断一下。

th:value="${hospitalSet?.hoscode}"

————————————————
版权声明:本文为CSDN博主「东边的山坡」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/dongpo11/article/details/117993845

太神了,本新手五体投地。

标签:hoscode,parsing,hospitalSet,template,error,during,null,happened
来源: https://www.cnblogs.com/gabiandlizzy/p/16187185.html