Error executing project in TomCat

0

Hello everyone, I'm trying to run a JavaWeb project on TomCat, but when I run it it gives this error:

  

HTTP Status 404 - /Drogaria/faces/templates/modeloSistema.xhtml        type Status report

     

message /Drogaria/faces/templates/modeloSistema.xhtml

     

description The requested resource is not available.

     

Apache Tomcat / 7.0.82

In other projects I run and run normal, only the one that is in trouble, the server is configured correctly, is tight, and synchronized.

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!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:f="http://java.sun.com/jsf/core"
	xmlns:p="http://primefaces.org/ui">
	
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Drogaria</title>
</h:head>
<h:body>
	<p:layout fullPage="true">
		<p:layoutUnit position="north">
		</p:layoutUnit>
		
		<p:layoutUnit position="center">
		</p:layoutUnit>
	</p:layout>
</h:body>
</html>
    
asked by anonymous 18.01.2018 / 17:07

0 answers