Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/12/2015, 10:58
ElAthlit
 
Fecha de Ingreso: febrero-2011
Mensajes: 672
Antigüedad: 13 años, 3 meses
Puntos: 78
Respuesta: Ejecutar proyecto Struts en Eclipse

Hola ferola,
has añadido el filtro en el web.xml?

El mensaje que te da:
Código :
Ver original
  1. The Struts dispatcher cannot be found

Sugiere que te falta algo como esto:
Código XML:
Ver original
  1. <filter>
  2.     <filter-name>struts</filter-name>
  3.     <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  4.   </filter>

Aquí tienes ejemplos de configuración del web.xml
https://struts.apache.org/docs/webxml.html

Saludos