Eventos al cargar pagina

xhtml

<html xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:p="http://primefaces.org/ui" xmlns="http://www.w3.org/1999/xhtml">
    <h:head>


        <title> Dashboard</title>

    </h:head>
    <h:body>

        <f:event listener="#{panelController.view}" type="preRenderView"/>

        <h:form id="form" prependid="false">


        </h:form>

    </h:body>
</html>

Controller

/**
 *
 * @author 
 */
@Named
@ViewScoped
public class PanelController implements java.io.Serializable {


    public void init() {
    }

     public void view(){

    }



}

Last updated