Advertisement
Figureight

exemplo jsf

Oct 17th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://xmlns.jcp.org/jsf/html"
  5. xmlns:p="http://primefaces.org/ui">
  6. <h:head>
  7. <title>Facelet Title</title>
  8. </h:head>
  9. <h:body>
  10. Testes efetuados
  11. <h:form>
  12. <br/>
  13. Aluno<br/>
  14. <h:outputLabel for="nome" value="Nome"/>
  15. <h:inputText id="nome" value="#{aluno.idAluno}" />
  16. <h:commandButton value="enviar" action="#{aluno.teste()}" ></h:commandButton>
  17. <h:outputText id="mensg" value="#{aluno.idAluno}"></h:outputText>
  18. </h:form>
  19. <br />
  20. </h:body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement