O módulo não foi implantado. Verifique o log do servidor para ver mais detalhes.

Java

10/06/2015

Pessoal,

Estou tentando rodas estas duas páginas:

INDEX.XHTML
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:p="http://primefaces.org/ui"
      xmlns:f="http://java.sun.com/jsf/core">
    <h:head>
        <title>Facelet Title</title>
    </h:head>
    <h:body>
        <ui:composition template="./template.xhtml">
            <ui:define name="content">
                SVI - REGISTRO
            </ui:define>
        </ui:composition>
    </h:body>
</html>


TEMPLATE.XHTML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:p="http://primefaces.org/ui">
    <h:head>
        <title>SVI - Controle de Registro</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    </h:head>
    <h:body>
        <p:layout fullPage="true">
            <p:layoutUnit position="north" size="0" header="SVI - Controle de Registro"
                          resizable="false" closable="false" collapsible="false" style="font-size: 20px; font-family: Arial">
            </p:layoutUnit><p:layoutUnit position="west" size="200" header="Menu" resizable="true" closable="false" collapsible="false">
                <p:menu style="width: 96%">
                    <p:submenu label="Inicial">
                        <p:menuitem value="index" url="index.xhtml"/>
                    </p:submenu>
                    <p:submenu label="Cadastros...">
                        <p:menuitem value="Clientes" url="CadCliente.xhmtl"/>
                    </p:submenu>
                    <p:submenu label="Movimentos">
                        <p:menuitem value="Andamento Registro" url="#"/>
                    </p:submenu>
                </p:menu>
            </p:layoutUnit>
            <p:layoutUnit position="center" header="Sistema">
                <ui:insert name="content">
                </ui:insert>
            </p:layoutUnit>
            <p:layoutUnit position="south" size="50" header="Atomosys" resizable="false" closable="false" collapsible="false">
            </p:layoutUnit>
        </p:layout>
    </h:body>
</html>


Pórem está gerando este erro:
compile:
compile-jsps:
Implantação local em C:\Users\Familias\Documents\NetBeansProjects\SVI_Registro\build\web
GlassFish Server 4.1, deploy, null, false
C:\Users\Familias\Documents\NetBeansProjects\SVI_Registro\nbproject\build-impl.xml:1048: O módulo não foi implantado.
Verifique o log do servidor para ver mais detalhes.
FALHA NA CONSTRUÇÃO (tempo total: 1 segundo)


E esta é a linha informada no erro acima:
<nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="$"/>


Já inserir a biblioteca do primefaces. Será que alguém poderia informar o porque desse erro.

Obrigado a todos.
Jader Antonio

Jader Antonio

Curtidas 0
POSTAR