防止在 websphere jsf 中将 null 请求参数转换为零

发布于 2024-11-03 03:25:32 字数 165 浏览 6 评论 0原文

我们在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒绊 2024-11-10 03:25:32

也许它可以帮助:

在 tomcat7 中,空双字段的值在更新模型阶段更改为零。在我使用 glassfish el impl 更改默认 tomcat“el” 实现后,这些值

    <dependency>
        <groupId>org.glassfish.web</groupId>
        <artifactId>el-impl</artifactId>
        <version>2.2</version>
    </dependency>

在 web.xml 中被读取为 null:

<context-param>
    <param-name>com.sun.faces.expressionFactory</param-name>
    <param-value>com.sun.el.ExpressionFactoryImpl</param-value>
</context-param>

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

    <dependency>
        <groupId>org.glassfish.web</groupId>
        <artifactId>el-impl</artifactId>
        <version>2.2</version>
    </dependency>

and in web.xml:

<context-param>
    <param-name>com.sun.faces.expressionFactory</param-name>
    <param-value>com.sun.el.ExpressionFactoryImpl</param-value>
</context-param>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文