org.springframework.expression.spel.SpelEvaluationException:EL1007E:在null上找不到属性或字段“chargesName”

org.springframework.expression.spel.SpelEvaluationException:EL1007E:在null上找不到属性或字段“chargesName”,第1张

org.springframework.expression.spel.SpelEvaluationException:EL1007E:在null上找不到属性或字段“chargesName”

您使用了html页面顶部的表单:

<form method="post" th:object="${entSetCharges}" th:action="@{/updatesetcharges}">

th:field="*{chargesName}
被绑定到您的内部对象/豆
th:object="${entSetCharges}
。这意味着您正在搜索对象内不存在或为空的
chargesName
字段
entSetCharges

解:

  • 也许将您

    th:field="*{chargesName}"
    ${savedcharges.chargesName}
    表达式更改为访问对象的字段。

  • 尝试

    respondResult.addObject("entSetCharges",new EntSetCharges());
    在返回行上方添加。您的视图 不会 自动为您创建此对象。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621675.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存