Grails 1.2.1 with Spring 3.0.0 dependency problem under Jetty?

The problem is caused by the fact that in new version of Spring ConfigurableWebApplicationContext is located in spring-web. Jar, but the interface it inherits ConfigurableApplicationContext, which contains setId(String) method is in located in spring-context.jar.

The problem is caused by the fact that in new version of Spring ConfigurableWebApplicationContext is located in spring-web. Jar, but the interface it inherits ConfigurableApplicationContext, which contains setId(String) method is in located in spring-context.jar. If you have a library which has been compiled against older version of spring-context it will fail with NoMethodFound exception.

The solution is to locate and recompile that library against latest Spring version. If you are using Spring version below 3.0 you could try to put full Spring bundle Jar instead of separate packages.

Thanks Dmitry. I've already found and fixed that ;) – archer Jun 10 '10 at 10:39.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions