Erro 404 Struts 2

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”>

&lt;strong&gt;Para cadastrar um usuário, preencha os campos abaixo:&lt;/strong&gt;
<br/><br/>

&lt;s:textfield name="nome" label="Digite seu nome:" /&gt;
&lt;s:textfield name="email" label="Digite seu email:"/&gt;

<br/><br/>

&lt;s:submit value="Cadastrar"/&gt;

</s:form>

<h4>${msg}</h4>

Quando rodo o Tom cat esta dando erro 404. Alguem pode me ajudar?

como ta teu web xml?

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”>

&lt;context-param&gt;
	&lt;param-name&gt;contextConfigLocation&lt;/param-name&gt;
	&lt;param-value&gt;/WEB-INF/applicationContext.xml&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;listener&gt;
	&lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt;
&lt;/listener&gt;


&lt;filter&gt;
	&lt;filter-name&gt;struts2&lt;/filter-name&gt;
	&lt;filter-class&gt;org.apache.struts2.dispatcher.FilterDispatcher&lt;/filter-class&gt;
&lt;/filter&gt;
&lt;filter-mapping&gt;
	&lt;filter-name&gt;struts2&lt;/filter-name&gt;
	&lt;url-pattern&gt;/*&lt;/url-pattern&gt;
&lt;/filter-mapping&gt;



&lt;session-config&gt;
	&lt;session-timeout&gt;30&lt;/session-timeout&gt;
&lt;/session-config&gt;
&lt;welcome-file-list&gt;
&lt;welcome-file&gt;index.html&lt;/welcome-file&gt;
&lt;welcome-file&gt;index.htm&lt;/welcome-file&gt;
&lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt;
&lt;welcome-file&gt;default.html&lt;/welcome-file&gt;
&lt;welcome-file&gt;default.htm&lt;/welcome-file&gt;
&lt;welcome-file&gt;default.jsp&lt;/welcome-file&gt;

</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…