david
david

Reputation:

java lucene class not found problem

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

Is there any way i can go about making sure java/tomcat can find this class?

Upvotes: 3

Views: 3897

Answers (1)

cherouvim
cherouvim

Reputation: 31903

This class does not exist in the core lucene jar you are using but in a contrib jar called lucene-memory-2.4.1.jar. Make sure you include this jar in your application as well.

Upvotes: 11

Related Questions