Tag Library supports namespace: http://java.sun.com/jsf/core, but no tag was defined for name: ajax
问题 Below page <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %> <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <h:form> <h:outputLabel id="outtxt" value="#{user.name}"/> <h:inputText id="intxt" value="#{user.name}"> <f:ajax event="keyup" execute="intxt" render="outtxt"/> </h:inputTtext> </h:form> Throws below error Tag Library supports namespace: http://java.sun.com/jsf/core, but no tag was defined for name: ajax How is this caused and how can I solve it? 回答1: The <f:ajax>