struts 2 实体疑问
我用struts 2 的实体和页面
action :
private TGxGoout tGxGoout = new TGxGoout();
public TGxGoout gettGxGoout() {
return tGxGoout;
}
public void settGxGoout(TGxGoout tGxGoout) {
this.tGxGoout = tGxGoout;
}
页面:<input id="tGxGoout_beginTime" readonly name="tGxGoout.beginTime" type="text" style="width:80%;" class="searchtxt" value="${tGxGoout.beginTime}"/>
不管是我新增还是编辑都会报错:ognl.OgnlException: target is null for setProperty(null, "id", [Ljava.lang.String;@2d56d401)
如果我改了action的tGxGoout 变量名,然后程序就可以正常运行。
求大神指教这是什么情况啊?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想知道这到底是什么原因造成的?? ONGL的规范吗?
变量的命名问题,建议不要用tGxGoout这样的命名,命名时,第一个和第二个字母都要小写,然后用IDE自动生成get/set方法
命名规范什么事都没有
可能是OGNL规范认为javabean的setter/getter方法的set/get后第一个字母要大写