防止在 websphere jsf 中将 null 请求参数转换为零
我们在 faces-config 中使用 #{param.customId} 从请求中获取参数。在 glassfish2 中它工作正常,但在 websphere 7.0 下,未定义的 BigDecimal null 值更改为零 (0)。对于这些值,如何配置 websphere 使其像 glassfish 一样工作?
We use #{param.customId} in faces-config for getting parameter from request. In the glassfish2 it works fine, but under websphere 7.0 undefined BigDecimal null values change to zero (0). How to configure websphere to works as like as glassfish for these values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许它可以帮助:
在 tomcat7 中,空双字段的值在更新模型阶段更改为零。在我使用 glassfish el impl 更改默认 tomcat“el” 实现后,这些值
在 web.xml 中被读取为 null:
maybe it can help:
In tomcat7, values of empty double fields are changed to zero at update model phase. After i change default tomcat "el" implemantation with glassfish el impl, these values are read as null
and in web.xml: