In my Facelets page I have this:
<p:growl id="msg1" life="1500"/>
and another
<p:messages id="msg2"/>
I need the following message to show up in <p:messages>
only.
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("veillez saisir les champs obligatoires (*)", null));
But it also shows up in <p:growl>
.
How do I specify where the message should show up?