<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<html>
<head>
<title>Teste JSF</title>
</head>
<body>
<f:view>
<h:form id="helloForm">
Digite seu nome: <h:inputText value="#{personBean.personName}" />
<h:commandButton action="greeting" value="OK" />
</h:form>
</f:view>
</body>
</html>
Digite seu nome:
Gostaria de saber se alguém tem alguma idéia do que devo fazer?