rabbitmq-oracle-stored-procedures
rabbitmq-oracle-stored-procedures copied to clipboard
Failed to load into Oracle org/apache/commons/logging
Hi @pmq,
I had to target pom.xml
to JDK 1.6 to match my Oracle 12.1 instance
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
The error message when execution loadjava
is:
errors : class org/apache/commons/logging/impl/ServletContextCleaner
ORA-29552: verification warning: java.lang.NoClassDefFoundError: javax/servlet/ServletContextListener
All other classes (including com/zenika/oracle/amqp/RabbitMQPublisher) have been loaded successfully
I wonder if you have any hints on how to resolve this issue?
Thanks, Mau