我无法粘贴整个堆栈跟踪,但通常情况下,通过命令行工作正常并且上次通过 IDE 工作正常的单元测试在通过 IntelliJ 运行时突然开始失败。它总是像
java.lang.IllegalStateException: Failed to load ApplicationContext
...
...Long meaningless stack trace
...
Caused by: org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'serviceClass' threw exception; nested exception is java.lang.NoClassDefFoundError: javax/xml/ws/soap/MTOM
...
...Even more generic stack trace
...
这尤其令人困惑,因为它找不到的类是类似的默认 lib 类。将它找不到的类添加到 Maven 依赖项有时会作为管道胶带解决方案有所帮助,但通常每次都是不同的类,即使问题基本相同。什么可能导致这种情况?
万千封印
相关分类