我想知道如何调用转换器和验证器的调用顺序或流程。我正在共享相同的示例代码:
<f:view>
<h:form>
<h:inputText value="#{myBean.field}">
<f:validateLength minimum="5" maximum="50"></f:validateLength>
<f:validator validatorId="nameValidator" />
</h:inputText>
<br>
<h:inputText id="date" value="#{myBean.date}">
<f:convertDateTime pattern="dd-MMM-yyyy" />
<f:converter converterId="dateConvertor" />
</h:inputText>
<br>
<h:commandButton action="#{myBean.execute}" value="Submit"></h:commandButton>
</h:form>
<h:messages></h:messages>
</f:view>