
Estado HTTP 404 /System/login.jsp
Publicado por Lazaro (2 intervenciones) el 11/04/2016 03:29:58
Buenas: soy novato en esto de Java EE.
Estoy trabajando con el framwork Struts2, utilizo el IDE Eclipse y Apache Tomcat 8.
Cuando quiero ejecutar el "login.jsp" en el server me encuentro con el error detallado.
Este el código de mi web.xml
Los .jsp estan en la carpeta "WebContent".
Estoy trabajando con el framwork Struts2, utilizo el IDE Eclipse y Apache Tomcat 8.
Cuando quiero ejecutar el "login.jsp" en el server me encuentro con el error detallado.
Este el código de mi web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>System</display-name>
<filter>
<filter-name>struts2 </filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
<welcome-file>login.html</welcome-file>
<welcome-file>login.htm</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>
Los .jsp estan en la carpeta "WebContent".
Valora esta pregunta


0