我一直遇到一个问题,即允许类型为Double
的输入字段为空或其他值。
由于我正在使用自动生成的代码,因此我无法触及对象的get / set方法。此外,我无法修改服务器参数,例如-Dorg.apache.el.parser.COERCE_TO_ZERO
。
我最近的解决方案是为自动生成的对象创建一个包装器对象,该对象处理String
而不是Double
。这是:
public class WrapperType {
private AUTO_GENERATED_OBJECT autogen;
public WrapperType(AUTO_GENERATED_OBJECT autogen) {
this.autogen = autogen;
}
public String getOperation() {
if (autogen.getOperation() == null) {
return null;
}
return autogen.getOperation() + "";
}
public void setOperation(String value) {
if (value == null || value.isEmpty()) {
autogen.setOperation(null);
} else {
autogen.setOperation(Double.valueOf(value));
}
}
}
所以我要做的就是,不要在我自动生成的对象上调用get / set,而是在一个等效的包装器上调用get / set,这可以通过以下方式获得:
public WrapperType convertVar(AUTO_GENERATED_OBJECT autogen) {
return new WrapperType(autogen);
}
然后在需要的地方参考:
<p:inputText value="#{bean.convertVar(_var).operation}" />
除非这不起作用。我收到了一个错误:
javax.el.PropertyNotFoundException: /operation/collections/tabs/page.xhtml The class 'MyClass$Proxy$_$$_WeldClientProxy' does not have the property 'convertVar'.
任何人对如何解决此问题或克服我对空值和数值的要求都有任何想法?