如何从 JSF/ADF 验证器获取旧值?

发布于 2024-08-24 12:08:17 字数 165 浏览 2 评论 0原文

我需要在 JSF/ADF 输入字段的值被用户更改时验证该字段。如果页面上的值与模型中的值相同,则跳过该字段的验证。

我正在使用 JSF 和 Oracle ADF Faces,我知道 JSF 生命周期,并且我可以制作自己的转换器或验证器,但我在任何地方都找不到旧值。

I have a requirement to validate an JSF/ADF input field only if the value of that field changed by users. If the value on the page is the same as the value in the model, skip validation for that field.

I am using JSF and Oracle ADF Faces, I know JSF life cycle and I can make my own converter or validator, but I can't find the old value anywhere.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

美男兮 2024-08-31 12:08:17

在验证期间,UIInput#getValue() 应该可以使用旧值。

public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
    Object oldValue = ((UIInput) component).getValue();
    // ...
}

During validation the old value should be available by UIInput#getValue().

public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
    Object oldValue = ((UIInput) component).getValue();
    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文