With lucene-core-5.5.2 i am facing problem a in weblogic server. standalone search application works but when i deploy as WEB APP it is failing with below error
Exception type is 'java.lang.ExceptionInInitializerError'. Runtime error: java.lang.IllegalArgumentException: An SPI class of type org.apache.lucene.codecs.Codec with name 'Lucene54' does not exist. You need to add the corresponding JAR file supporting this SPI to your classpath. The current classpath supports the following names: []
I tried creating folder structure under classes/
as META-INF/services/
added all files from lucene-core-5.5.2.jar META-INF\services\
directory also created jar file for META-INF\services\
and added in classpath but it doesn't recognize META-INF/services
to load SPI
Any help would be really appreciated.