Problemas com web.xml

E ai pessoal,

estou com um problema com o web.xml, nao sei se estou configurando corretamente para acessar o meu index.jsp. O meu arquivo esta assim

<?xml version="1.0" encoding="UTF-8"?>

<web-app id="person" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
	
    <display-name>person</display-name>

    <!-- Include this if you are using Hibernate -->
    <filter>
        <filter-name>Spring OpenEntityManagerInViewFilter</filter-name>
        <filter-class>
            org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
        </filter-class>
    </filter>

    <filter-mapping>
        <filter-name>Spring OpenEntityManagerInViewFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

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


    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

Sempre que eu tento acessar o index.jsp eu digito http://localhost:8080/MyProject/WebContent/index.jsp Quando eu queria digitar somente o http://localhost:8080/MyProject/index.jsp !

O que eu preciso alterar para que isso funcione. O meu index esta abaixo do WebContent.

Valew

Abs

Dã, esqueça o que eu falei.

Ao colocar isso …o primeiro lugar que ele procura é:
MyProject/index.jsp , mas pelo que entendi o seu arquivo JSP não está lá…logo ele não acha.

Já tentou colocar assim no web.xml

<welcome-file-list>
        <welcome-file>WebContent/index.jsp</welcome-file>
 </welcome-file-list>

Entao eu fiz assim, mas quando eu abro na url aparece todas as subpastas ! ao inves de abrir o index.jsp, a menos que eu coloque o index.jsp na raiz do projeto ele vai abrir !