我有一个h:inputText和一个连接到它的h:消息:
<h:inputText id="myText" value="#{myController.myText}" />
<a4j:outputPanel>
<h:message for="myText" .../>
</a4j:outputPanel>
我想从java发送消息,方式如下:
FacesContext.getCurrentInstance().addMessage(arg0, arg1);
发送到h:消息,但发送到特定表单中的特定ID。 我怎样才能做到这一点? (没有实现验证bean或验证方法 - 意味着没有抛出验证异常)。
答案 0 :(得分:32)
您需要提供所谓的client id
,您可以在UIComponent
找到。
以下是如何使用它的快速示例。
考虑以下bean:
@ManagedBean
@RequestScoped
public class ComponentMsgBean {
private UIComponent component;
public UIComponent getComponent() {
return component;
}
public void setComponent(UIComponent component) {
this.component = component;
}
public String doAction() {
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(component.getClientId(), new FacesMessage("Test msg"));
return "";
}
}
用于以下Facelet:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<h:body>
<h:form>
<h:outputText id="test" value="test component" binding="#{componentMsgBean.component}"/>
<h:message for="test"/>
<h:commandButton value="click me" action="#{componentMsgBean.doAction}" />
</h:form>
</h:body>
</html>
这将为示例中使用的outputText组件添加一条内容为“Test msg”的Faces消息。
答案 1 :(得分:7)
另一种方法是:给表单提供一个ID,比如“form1”,然后,当添加消息时,clientId是“form1:test”。