Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 JSF 2.0 应用程序中,每当验证失败时,我都会向用户显示一条带有<h:message>标记的消息。我总是在页面顶部收到一条额外的消息以及预期的消息。我怎样才能摆脱这个?
<h:message>
显然您在<h:messages>页面顶部使用了 a 。如果您将其设置为仅显示全局消息(具有null客户端 ID 的消息,如 中context.addMessage(null, message)),那么客户端特定的消息将不会在那里重复。
<h:messages>
null
context.addMessage(null, message)
<h:messages globalOnly="true" />