获得此异常
Caused by: java.lang.NoClassDefFoundError: org/springframework/data/repository/support/PageableExecutionUtils
当我在Spring Controller中使用 @AutoWired 两次时。 我正在使用版本 2.0.0.M1 的 Spring-data-jpa 我是否必须降级Spring-data-jpa或在Spring控制器中使用@AutoWired两次的任何其他选项。
提前致谢。
答案 0 :(得分:1)
Caused by: java.lang.NoClassDefFoundError: org/springframework/data/repository/support/PageableExecutionUtils
PageableExecutionUtils类必须出现在spring-data-commons中。所以当你遇到这个异常时,请检查PageableExecutionUtils类的来源。如果不存在,请升级spring-data-commons jar。
最初我使用了spring-data-commons-1.8.0.RELEASE,升级到spring-data-commons-2.0.0.M1。