我在 JSF 2.1 vanilla 中的复合组件(在 glassfish 3.1 上)遇到了一些麻烦。我的问题的简化版本在这里:
【复合成分】
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:cc="http://java.sun.com/jsf/composite">
<!-- INTERFACE -->
<cc:interface>
<cc:attribute name="value" required="true"/>
<cc:attribute name="title" required="false" default=""/>
<cc:editableValueHolder name="inputTarget" targets="labeledInputField"/>
</cc:interface>
<!-- IMPLEMENTATION -->
<cc:implementation>
<p:inputText id="labeledInputField"
label="#{cc.attrs.title}"
value="#{cc.attrs.value}"
title="#{cc.attrs.title}">
<cc:insertChildren/>
</p:inputText>
</cc:implementation>
</html>
[实施于]
<!-- thisPerson is passed in via ui:param to the facelet containing this code.
it works in other (non-composite) components on the page -->
<comp:labeledInputText
id="baseUsername"
value="#{controller.username}"
title="#{bundle.Username}">
<f:validator for="inputTarget" binding="#{thisPerson.usernameValidator}"/>
<f:converter for="inputTarget" converterId="#{whiteSpaceTrimConverter}"/>
</comp:labeledInputText>
问题是,“thisPerson.usernameValidator”正在评估为 NULL,然后导致 com.sun.faces.facelets.tag.jsf.ValidatorTagHandlerDelegateImpl 跳到尝试通过“validatorID”加载验证器的代码,即未设置,因为我们试图通过“绑定”发送验证器。有没有办法让复合材料评估 ui:param 值,或者不需要重新设计验证器的解决方法(这是一个巨大的反模式,我现在没有时间扭转损害)。假设验证者必须通过绑定进入。
我知道复合是有效的,因为在不同的 facelet 中,我将验证器绑定到一个具体的 bean 引用,而不是一个“软”引用,它就像一个冠军。
TIA