我在JSF应用程序中运行了一个会话范围的CDI bean。
@Named
@SessionScoped
public class myController implements Serializable {
.....
}
如果jsf框架抛出标准验证异常,我需要更新bean的状态。例如,如果输入字段为required = true:
<h:inputText value="#{.....}" required="true" />
如果抛出了验证异常,我没有找到触发我的bean方法的方法。我怎么能这样做?