Spring 报错集合

总结所有Spring报错,如此桩桩件件记录以便以后查阅

NoSuchMethodError: AnnotatedElementUtils.findMergedAnnotation

nested exception is java.lang.NoSuchMethodError: org.springframework.core.annotation.AnnotatedElementUtils.findMergedAnnotation(Ljava/lang/reflect/AnnotatedElement;Ljava/lang/Class;)

参考stackoverflow问题
显然是由于jar包冲突,但我的lib包里并没有冲突,在其他项目运行并没有问题。
Spring 报错集合_第1张图片
最后发现是activemq-all-5.14.1.jar的问题,用jd-gui反编译工具打开activemq-all-5.14.1.jar
Spring 报错集合_第2张图片
发现里边集成了spring core里边的类,自然也就包括这个AnnotatedElementUtils类,所以就冲突了。
解决办法:把activemq-all-5.14.1.jar换成低版本的activemq-all-5.8.jar,该版本没有集成springframework,可运行。

javax.servlet.ServletException: No adapter for handler [org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter@45378f]

在和继承SimpleFormController 作为控制器使用的时候(public class LoginController extends SimpleFormController ),需要在-servlet.xml文件中配置
否则会有类似上面面的异常

javax.servlet.ServletException: No adapter for handler [org.springframework.remoting.httpinvoker.HttpInvokerServiceExporte

在和通过HttpInvokerServiceExporter提供HTTP服务一起使用的时候,需要在-servlet.xml文件中配置
否则会有类似上面的异常

你可能感兴趣的:(java)