<h:form>
<h:inputText value="#{userAddBean.newPassword}" required="true" id="userPassword">
</h:inputText>
<h:commandLink actionListener="#{userAddBean.passGenListen}" immediate="true">
<h:graphicImage value="../images/password.png" styleClass="commandImage"/>
</h:commandLink>
</h:from>
public void passGenListen(ActionEvent e){
newPassword = PasswordGenerator.generate(8);
}
Почему не обновляется поле userPassword? Если обновить страницу на F5, то обновляется.