我有一个库的小型Web应用程序,带有一个自定义的ISBN验证器。我的用于添加书籍的.xhtml页面如下所示:
<fieldset>
<h:messages/>
<ul>
<li>
<h:outputLabel for="isbn" value="#{labels.isbn}:" />
<h:inputText id="isbn" value="#{addController.book.isbn.isbnValue}" required="true" requiredMessage="- ISBN must be filled in.">
<f:validator validatorId="isbnValidator" />
</h:inputText>
</li>
<li>
<h:outputLabel for="title" value="#{labels.title}:" />
<h:inputText id="title" value="#{addController.book.title}" required="true" requiredMessage="- Title must be filled in."/>
</li>
<li>
<h:outputLabel for="name" value="#{labels.name}:" />
<h:inputText id="name" value="#{addController.book.person.name}" required="true" requiredMessage="- Name must be filled in."/>
</li>
<li>
<h:outputLabel for="firstname" value="#{labels.firstname}:" />
<h:inputText id="firstname" value="#{addController.book.person.firstname}" />
</li>
</ul>
<h:commandButton id="addButton" action="#{addController.save}" value="#{labels.add}" />
<h:commandButton id="cancelButton" action="bookOverview" value="#{labels.cancel}" />
</fieldset>
</ui:define>
第一个输入字段的isbnValidator
是此类:
private Isbn isbn;
@Override
public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
isbn = new Isbn((String) value);
if (!isbn.isIsbn17Characters()) {
addMessageToContext(context, "- ISBN needs to have 17 characters");
}
if (isbn.isIsbn17Characters() && !isbn.isIsbnInRightFormat()) {
addMessageToContext(context, "- Wrong format, it should be like 'XXX-XX-XXX-XXXX-X'");
}
if (isbn.isIsbn17Characters() && isbn.isIsbnInRightFormat() && !isbn.isIsbnFormatValid()) {
addMessageToContext(context, "- ISBN can only contain numbers, and no other tokens");
}
if (isbn.isIsbn17Characters() && isbn.isIsbnInRightFormat() && isbn.isIsbnFormatValid()
&& !isbn.isLastNumberValid()) {
addMessageToContext(context, "- Last number of the ISBN should be " + isbn.getCorrectLastNumber()
+ " with those 12 numbers");
}
}
public static void addMessageToContext(FacesContext context, String message) {
FacesMessage facesMessage = new FacesMessage();
facesMessage.setSummary(message);
facesMessage.setDetail(message);
context.addMessage("isbn", facesMessage);
}
当我单击"添加"按钮时,应该会将该书添加到数据库中。
当没有填写ISBN字段、名称字段或标题字段时,我会收到相应的错误消息。但是,当我的字段被填充,ISBN验证失败时,他会显示错误消息,但他仍然会将书籍(带有错误的ISBN编号)添加到数据库中。
我想了一个解决方案:如果我的消息标签不是空的,他就不应该把书添加到数据库中。但是我该怎么检查呢?
或者我的问题有更好的解决方案吗?
验证错误消息处理错误。您需要用FacesMessage
抛出ValidatorException
,而不是手动添加FacesMessage
。
所以不是所有的
addMessageToContext(context, "- ISBN needs to have 17 characters");
你需要做
throw new ValidatorException(new FacesMessage("- ISBN needs to have 17 characters"));
这是JSF的标志,表明输入无效,因此不会调用操作方法。您也不需要指定客户端ID,它只会出现在与启动该验证器的输入组件相关联的<h:message>
中。