java/spring- getting NoClassDefFoundError at org.springframework.context.support.AbstractApplicationContext

前端 未结 2 1496
梦谈多话
梦谈多话 2021-01-25 04:35

I am trying to initialise an RMI client for which I have used Spring.

Now, the application\'s RMI context is stored in file= rmiClientAppContext.xml

The relevant

2条回答
  •  后悔当初
    2021-01-25 05:17

    Sounds like you are missing very important spring-web jar file. Add this to your pom file to fix this issue.

         
            org.springframework
            spring-web
            3.2.6.RELEASE
        
    

提交回复
热议问题