我有以下代码:
<h:inputText id="it-date" value="#{myBean.myDate}">
<f:convertDateTime pattern="MM/dd/yyyy"/>
</h:inputText>
<h:message for="it-date" />
当我输入 date02/30/2012
时,我收到以下消息:
j_idt5:it-date: '02/30/2012' could not be understood as a date. Example: 10/01/2012
是否可以删除j_idt5:it-date:
包括冒号并保留 Java 的默认消息?
我已经尝试使用属性label
,但是冒号仍然存在。我不想使用自定义消息,因为默认消息已经国际化。