我正在使用inputText从用户那里获取输入
<h:inputText id="firstName" value="#{beanManager.currentUser.firstName }" required="true" style="font-size: 15px"></h:inputText>
然后我添加了一个消息标记
<h:message for="firstName"></h:message>
但是当inputtext为空并且我按下提交时,我收到以下错误消息:
> j_id_jsp_1382885624_1:ID: Validation Error: Value is required.
如何仅显示错误消息?
> Validation Error: Value is required.
这是代码:
<f:view>
<h:form>
<h:panelGrid border="1" columns="3" style="width: 643px; ">
<h:outputText value="First Name" style="font-size: 25px; font-weight: bold"></h:outputText>
<h:outputText value="Last Name" style="font-size: 25px; font-weight: bold"></h:outputText>
<h:outputText value="ID" style="font-size: 25px; font-weight: bold"></h:outputText>
<h:inputText id="firstName" value="#{beanManager.currentUser.firstName }" required="true" requiredMessage="Enter a Valid First Name" style="font-size: 15px"></h:inputText>
<h:inputText id="LastName" value="#{beanManager.currentUser.lastName }" required="true" requiredMessage="Enter a Valid Last Name" style="font-size: 15px"></h:inputText>
<h:inputText id="ID" value="#{beanManager.currentUser.ID}" required="true" requiredMessage="Enter a Valid ID" style="font-size: 15px">
</h:inputText>
<h:form><h:commandButton action="#{beanManager.save }" value="Save Changes" style="height: 30px; width: 100px"></h:commandButton>
</h:form>
</h:panelGrid>
<h:commandLink action="backtopersonalview" value="Back To Users" style="height: 30px; width: 100px">
</h:commandLink>
</h:form>
</f:view>
答案 0 :(得分:2)
是的,这是可能的。
对于当前消息,我可以说它由form id
,item id
和default message
组成。
<form_id>:<item_id>: <default_message:javax.faces.component.UIInput.REQUIRED>
如果您想更改默认消息,可以使用消息包执行此操作,您必须在faces-config.xml
中定义消息包。
<application>
<locale-config>
<default-locale>en</default-locale>
<supported-locale>en</supported-locale>
</locale-config>
<resource-bundle>
<base-name>com.stackoverflow.messages.language</base-name>
</resource-bundle>
</application>
并更改javax.faces.component.UIInput.REQUIRED
。
例如,您的邮件包language.properties
可能包含:
javax.faces.component.UIInput.REQUIRED=Your new required message!
大多数情况下,所有JSF
实施都附带以下默认消息,我Mojarra
来自copied:
javax.faces.component.UIInput.REQUIRED={0}: Validation Error: Value is required.
还可以使用requiredMessage
属性为单个项目定义所需的消息。那么您的<h:inputText />
应如下所示:
<h:inputText id="firstName" value="#{beanManager.currentUser.firstName }" required="true" requiredMessage="Your new required message!" style="font-size: 15px">