Olá
Estou tentando criar um projeto Web (Dynamic Web Project) e executa-lo no JBoss EAP6.
Criei o projeto, usando a runtime do JBoss EAP6, dynamic web module 3.0 , também criei o EAR na mesma tela.
Criei o arquivo WebContent/WEB-INF/index.jsp
, adicionei o EAR project ao servidor, inicio o JBoss e tomo um 404 ao acessar o endereço http://localhost:8080/teste/index.jsp
Alguém me ajuda?
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>teste</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
index.jsp
<html>
<head>
<title>TESTE</title>
</head>
<body>
<header>
<h1>TESTE JSP NO JBoss</h1>
</header>
</body>
</html>
Agradeço!!