Resolvido - Problema de configuração V-RAPTOR

Olá Gujeiros, uso o Eclipse Galileo e pretendo utilizar V-RAPTOR em meu projeto, coloquei os JAR’s do v-raptor no meu classpath e copiei os arquivos da pasta lib\mandatory do v-raptor para a pasta webcontent\web-inf\lib do meu projeto, acontece o seguinte erro quando mando iniciar o Tomcat:

01/03/2010 20:15:50 org.apache.tomcat.util.digester.SetPropertiesRule begin WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:Sig' did not find a matching property. 01/03/2010 20:15:50 org.apache.tomcat.util.digester.SetPropertiesRule begin WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:jsf' did not find a matching property. 01/03/2010 20:15:50 org.apache.tomcat.util.digester.SetPropertiesRule begin WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:BMWEB' did not find a matching property. 01/03/2010 20:15:50 org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Arquivos de programas\Java\jre6\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Arquivos de programas/Java/jre6/bin/client;C:/Arquivos de programas/Java/jre6/bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Arquivos de programas\ATI Technologies\ATI.ACE\Core-Static;C:\Arquivos de programas\MySQL\MySQL Server 5.1\bin; 01/03/2010 20:15:50 org.apache.coyote.http11.Http11Protocol init INFO: Initializing Coyote HTTP/1.1 on http-8080 01/03/2010 20:15:50 org.apache.catalina.startup.Catalina load INFO: Initialization processed in 715 ms 01/03/2010 20:15:50 org.apache.catalina.core.StandardService start INFO: Starting service Catalina 01/03/2010 20:15:50 org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine: Apache Tomcat/6.0.20 01/03/2010 20:15:50 org.apache.catalina.core.StandardContext filterStart SEVERE: Exception starting filter vraptor java.lang.ClassNotFoundException: br.com.caelum.vraptor.VRaptor at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233) at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:249) at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:397) at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:108) at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3800) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4450) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045) at org.apache.catalina.core.StandardHost.start(StandardHost.java:722) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) at org.apache.catalina.core.StandardService.start(StandardService.java:516) at org.apache.catalina.core.StandardServer.start(StandardServer.java:710) at org.apache.catalina.startup.Catalina.start(Catalina.java:583) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) 01/03/2010 20:15:50 org.apache.catalina.core.StandardContext start SEVERE: Error filterStart 01/03/2010 20:15:50 org.apache.catalina.core.StandardContext start SEVERE: Context [/BMWEB] startup failed due to previous errors 01/03/2010 20:15:50 org.apache.coyote.http11.Http11Protocol start INFO: Starting Coyote HTTP/1.1 on http-8080 01/03/2010 20:15:50 org.apache.jk.common.ChannelSocket init INFO: JK: ajp13 listening on /0.0.0.0:8009 01/03/2010 20:15:50 org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/31 config=null 01/03/2010 20:15:50 org.apache.catalina.startup.Catalina start INFO: Server startup in 683 ms

Meu arquivo web.xml está da seguinte forma:

<?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"> <display-name>BMWEB</display-name> <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> <!--configurao controlador do VRaptor--> <filter> <filter-name>vraptor</filter-name> <filter-class>br.com.caelum.vraptor.VRaptor</filter-class> </filter> <filter-mapping> <filter-name>vraptor</filter-name> <url-pattern>/*</url-pattern> <dispatcher>FORWARD</dispatcher> <dispatcher>REQUEST</dispatcher> </filter-mapping> </web-app>

Pelo que pesquisei seria problema de o jar do v-raptor não estar na pasta web-inf\lib do meu projeto, mas como não é o caso não sei o que é.

Alguém sabe o que pode ser?

Pessoal notei que se eu remover o trecho de código abaixo do meu web.xml consigo iniciar o Tomcat:

<!--configurao controlador do VRaptor--> <filter> <filter-name>vraptor</filter-name> <filter-class>br.com.caelum.vraptor.VRaptor</filter-class> </filter> <filter-mapping> <filter-name>vraptor</filter-name> <url-pattern>/*</url-pattern> <dispatcher>FORWARD</dispatcher> <dispatcher>REQUEST</dispatcher> </filter-mapping>

Será que é um erro de mapeamento do meu arquivo?

Olá pessoal. Ninguém sabe?

Eu acho que está faltando incluir o vraptor no classpath.
tenta incluir de novo os jars do VRaptor que eu acho que vai funcionar.
Quanto ao web.xml acho que está faltando algumas informações, testa o web.xml abaixo.

<?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">
	<display-name>BMWEB</display-name>
	<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>
	
	<!-- configura o controlador do VRaptor -->
	<filter>
		<filter-name>vraptor</filter-name>
		<filter-class>br.com.caelum.vraptor.VRaptor</filter-class>
	</filter>
	
	<filter-mapping>
		<filter-name>vraptor</filter-name>
		<url-pattern>/*</url-pattern>
		<dispatcher>FORWARD</dispatcher>
		<dispatcher>REQUEST</dispatcher>
	</filter-mapping>
	
	<jsp-config>
		<jsp-property-group>
			<description>BMWEB</description>
			<display-name>BMWEB</display-name>
			<url-pattern>*.jsp</url-pattern>
		</jsp-property-group>
	</jsp-config>
</web-app>

Obrigado pela resposta antonioedirane, utilizei o web.xml que vc passou, meu problema devia ser de JAR mesmo, baixei o projeto em branco do site do V-RAPTOR e funcionou 100%. Obrigado pela ajuda.