miércoles, 10 de junio de 2020

Java Server Faces Page Navigation

Antes de la versión 2.0 de JSF se debía crear reglas de navegación en el archivo faces-config.xml y declarar el destino en el método, pero desde esta versión se puede reemplazar ambos simplemente declarando un valor de retorno String como se muestra en el siguiente "Bean"

  1. package proyectoJSF.view;
  2. import javax.enterprise.context.RequestScoped;
  3. import javax.inject.Named;
  4. @Named
  5. @RequestScoped
  6. public class NavigationView {
  7. private String mensaje;
  8. public String viaje1() {
  9. mensaje = "Llego al destino #1";
  10. return "destino1"; // return "destino.xhtml"
  11. }
  12. public String viaje2() {
  13. mensaje = "Llego al destino #2";
  14. return "destino2?faces-redirect=true";
  15. }
  16. public void viaje3() {
  17. mensaje = "Llego al destino #3";
  18. //retorno vacío o "null"
  19. }
  20. /* Métodos Setter y Getter*/
  21. public String getMensaje() {
  22. return mensaje;
  23. }
  24. public void setMensaje(String mensaje) {
  25. this.mensaje = mensaje;
  26. }
  27. }

Y tendríamos la siguiente estructura de archivos html y xhtml

Donde los códigos son:
index.html
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Proyecto Demo de JSF</title>
  7. </head>
  8. <body>
  9. <h1>Probando JSF</h1>
  10. <hr />
  11. <a href="prueba1.xhtml">Prueba #1</a>
  12. <br/><br/>
  13. <a href="prueba2.xhtml">Prueba #2</a>
  14. </body>
  15. </html>

prueba2.xhtml
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:f="http://xmlns.jcp.org/jsf/core"
  4. xmlns:h="http://xmlns.jcp.org/jsf/html">
  5. <h:head>
  6. <title>Prueba 02</title>
  7. </h:head>
  8. <h:body>
  9. <h1>Navegación</h1>
  10. <h:form>
  11. <h:commandButton value="Viaje 1" action="#{navigationView.viaje1()}">
  12. </h:commandButton>
  13. <br/><br/>
  14. <h:commandButton value="Viaje 2" action="#{navigationView.viaje2()}">
  15. </h:commandButton>
  16. <br/><br/>
  17. <h:commandButton value="Viaje 3" action="#{navigationView.viaje3()}">
  18. <f:ajax execute="@form" render=":salida" />
  19. </h:commandButton>
  20. </h:form>
  21. <h:outputText id="salida" value="#{navigationView.mensaje}" />
  22. </h:body>
  23. </html>

destino1.xhtml y destino2.xhtml tienen un código similar
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:h="http://xmlns.jcp.org/jsf/html">
  4. <h:head>
  5. <title>Destino 01</title>
  6. </h:head>
  7. <h:body>
  8. <h1>Bienvenido al destino 01</h1>
  9. <h:outputText id="output" value="#{navigationView.mensaje}" />
  10. </h:body>
  11. </html>

Con el siguiente resultado visual en prueba2.xhtml:

Clic en la miniatura para ver la imagen completa


Y los resultados de cada uno de los botones, mostrando la navegación entre páginas.


Clic en la miniatura para ver la imagen completa

No hay comentarios:

Publicar un comentario