Java lucene class not found

I keep getting this error: java.lang.NoClassDefFoundError: org / apache / lucene / index / memory / MemoryIndex

Is there a way I can make sure java / tomcat can find this class?

+3
source share
1 answer

This class does not exist in the lucene kernel that you use, but in the contrib jar called lucene-memory-2.4.1.jar. Make sure you include this jar in your application.

+10
source

Source: https://habr.com/ru/post/1715190/


All Articles