当使用石英1.8.5和自由服务器时,我们得到以下异常。使用tomcat服务器(7.0.81)时,不会发生此异常。
java.lang.NoClassDefFoundError: oracle/sql/BLOB
at org.quartz.impl.jdbcjobstore.oracle.OracleDelegate.writeDataToBlob(OracleDelegate.java:642)
at org.quartz.impl.jdbcjobstore.oracle.OracleDelegate.insertJobDetail(OracleDelegate.java:207)
pom.xml
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>1.8.5</version>
</dependency>
<dependency>
<!-- ASYNC-METHOD-INVOCATION -->
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz-oracle</artifactId>
<version>1.8.5</version>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>12.1.0.2.0</version>
<scope>provided</scope>
</dependency>
dataSource
<server>
<library id="oracleDriver">
<fileset dir="..\sw\oracle" includes="*.jar" scanInterval="120s" />
</library>
<!-- xa datasource -->
<dataSource id="ORACLE_DS_XA" jndiName="jdbc/xxx/xxx" pool-name="xxx">
<jdbcDriver libraryRef="oracleDriver" javax.sql.ConnectionPoolDataSource="oracle.jdbc.xa.client.OracleXADataSource" />
<properties.oracle URL="jdbc:oracle:thin:@localhost:1521:sid" password="user" user="password" />
<connectionManager minPoolSize="1" maxPoolSize="10" />
</dataSource>
<keyStore id="defaultKeyStore" password="password" />
</server>
该异常的原因可能是什么?我们如何解决这个问题? 告诉我是否应提供有关我们配置的更多信息。
TIA
答案 0 :(得分:2)
我都不是很熟悉,但是如果石英捆绑在您的应用程序中,并且需要从Oracle驱动程序访问类,那么您需要向应用程序公开共享库。
您可以通过在<classloader>
的{{1}}或<application>
块中添加<webapplication>
部分来做到这一点
例如
server.xml
如果当前正在通过将应用程序放置在<application ...rest of your app configuration...>
<classloader commonLibraryRef="oracleDriver"/>
</application>
目录中来部署应用程序,则必须进行更改以将应用程序部署到dropins
目录中,然后创建一个{{1} }或apps
块。
文档链接:
Deploying an app and adding the server.xml configuration
Reference for <application>
element (includes classloader
as a sub-element)
Reference for <webApplication>
element (includes classloader
as a sub-element)