I am using spring for some testing, and I am getting this error:
java.lang.NoClassDefFoundError: org/springframework/core/io/ResourceLoader at org.springframework.mock.web.MockHttpServletRequest
The JAR that I installed is: spring-test-2.5.6.jar
Do I need another jar besides this?
Thanks
You also need
spring-core-*.jar.You can usually tell what jars you are missing by looking at the package. In this org.springframework.core.* is all in the core jar file.