Buenos dias, estoy intentando crear una aplicacion web en netbeans y apache siguiendo este tutorial:
URL="http://www.javatutoriales.com/2011/06/struts-2-parte-1-configuracion.html"
Al ser la primera vez que lo hago al intentar el Build me da un problema y se que esta en la declaración y mapeo del filtro de struts, ya que segun el tutorial debo incluir lo siguiente en mi web.xml:
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.Stru tsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Lo he incluido tal cual y al hacer el Build me da el siguiente error:
C:\...\NetBeansProjects\Proyecto\nbproject\build-impl.xml:1025: The module has not been deployed.
See the server log for details.
BUILD FAILED (total time: 2 seconds)
¿a que puede deberse? muchas gracias y un saludo