hi all
I tried to use Spring with servlet but I get this
error instantiating servlet class.
when I add listner to web.xml I get unknow source message
******************* web.xml *************
<!– Spring application context locations –>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:/src/spring-config.xml
</param-value>
</context-param>
<servlet>
<servlet-name>SpringContextServlet</servlet-name>
<servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>MyServlet</servlet-name>
<servlet-class>test.de.laliluna.library.MyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>MyServlet</servlet-name>
<url-pattern>/MyServlet</url-pattern>
</servlet-mapping>
*******************************************
thnaks a lot