我有以下尝试将用户输入验证为整数并且不显示错误文本。如果我不使用资源包(硬编码),它将显示。我可以使用带有 value attribute="#{bundle['INVALID_ENTRY']}" 的 outputText 并且它显示在同一页面上。有任何想法吗?
<h:inputSecret required="true" redisplay="true"
converterMessage = "#{bundle['INVALID_ENTRY']}"
value = "#{backingBean.code}" maxlength="4">
<f:validateLength maximum="4"/>
<f:convertNumber integerOnly="true"/>
<rich:ajaxValidator event="onblur" />
</h:inputSecret>