How to use two versions of jar in my java project

旧城冷巷雨未停 提交于 2019-11-29 02:20:30

You could still use a ClassLoader solution, but that is a nasty business where it is easy to make mistakes.

You could also use different JVM's.

But the solution I would personally choose is either (or both) of the following:

  • Verify that Neo4J breaks with Lucene 4.x. Maybe you will get lucky and there won't be any problems using the latest version.
  • Split them up into two applications where one of them, say Neo4J, is accessed by the other application via web service (most likely REST) calls. Neo4J has a built-in REST API anyway.

OSGi can fix this problem. An OSGi bundle is nothing more than a jar with additional metadata detailing versions. A bundle has a version number, and will detail version numbers (or ranges) of dependent jars.

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