Olá amigos,
Estou começando estudar Struts 2, criei uma página jsp com as tags do Struts, mas está dando erro 404. Segue o código abaixo:
<%@taglib uri="/struts-tags" prefix=“s” %>
<s:form action=“cadastrar”>
<strong>Para cadastrar um usuário, preencha os campos abaixo:</strong>
<br/><br/>
<s:textfield name="nome" label="Digite seu nome:" />
<s:textfield name="email" label="Digite seu email:"/>
<br/><br/>
<s:submit value="Cadastrar"/>
</s:form>
<h4>${msg}</h4>
Quando rodo o Tom cat esta dando erro 404. Alguem pode me ajudar?
Esse é o meu 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” xmlns:web=“http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” xsi:schemaLocation=“http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” id=“WebApp_ID” version=“2.5”>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
<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>
vc esta acessando o seu jsp diretamente ou atraves de alguma action??
se tiver acessando diretamente, em qual pasta esta seu jsp??
pode ser q o browser nao esteja enchergando ele…