Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [xxx.xxx.domain.jobs.xxxProcess]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: javax/persistence/Table
看到报错是javax/persistence/Table就去找这个在哪个jar包下,然后发现maven里明明有这个jar。但是找不到在哪里引用。
mvn dependency:tree
打印出依赖树
找到某jar里面引用了 | ± javax.persistence:persistence-api:jar:1.0.2:compile
这就更奇怪了,明明有为什么不起作用。
后来查到了在另一个框架里排除了这个jar包
<exclusion>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
</exclusion>
弄了一天,最后解决方案:
新加入Maven依赖,或者去掉排除这个jar包的框架。