How do a I resolve a java jackcess dependence error?

隐身守侯 提交于 2019-12-06 02:33:12

Commons Lang 3 is not backward compatible with 2.x. You'll have to download 2.6.

You might also want to investigate Maven or Ant+Ivy to make this kind of dependency resolution a bit easier.

Found it ;-) The commons lang is in the classpath, but it seems to be the wrong version. The requested package is org.apache.commons.lang.builder, which is valid for commons-lang 2.x in commons-lang3 the package is 'org.apache.commons.lang3.builder'. So you have to include a commons-lang 2.x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!