i did everything as the documentation says - heres my web.xml :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"
http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<!-- Servlets -->
<!--
Mapping an RPC service defined in handler-servlet.xml
-->
<servlet>
<servlet-name>handler</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet <!--
This is a Spring configuration
-->
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>handler</servlet-name>
<url-pattern>/handler/*</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>Projektgwt.html</welcome-file>
</welcome-file-list>
</web-app>
And handler-servlet.xml :
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="
http://www.springframework.org/schema/beans"
xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://
www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean class="org.gwtwidgets.server.spring.GWTHandler">
<property name="mappings">
<map>
<entry key="/rpctest" value-ref="RPCTest" />
</map>
</property>
</bean>
<bean id="RPCTest"
class="com.pl.jzebrowski.server.ServiceTestImpl" />
</beans>
</beans>
And i get :
java.lang.ClassNotFoundException:
org.springframework.web.servlet.DispatcherServlet
Despite i have Spring jars in the build path - any ideas ?