我只是希望是否有人看到并解决了这个问题。我有一个MBean和MXBean类。两者都使用相同的服务类来通过DAO类访问数据库。我正在使用spring 3.0初始化那些类,并使用JConsole测试那些bean。这两个bean具有访问其服务类的相同方法名称,例如methodA()。但是当连接到oracle数据库时,只有MBean类返回数据。另一个MXBean类产生一些错误。


这是错误


EL Severe]: 2012-05-18 10:37:54.134--ServerSession(1992289)--Thread(Thread[RMI TCP Connection(6)-10.208.138.241,5,RMI Runtime])--java.lang.IllegalArgumentException: interface oracle.ucp.jdbc.LabelableConnection is not visible from class loader
    at java.lang.reflect.Proxy.getProxyClass(Proxy.java:353)
    at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581)
    at oracle.ucp.jdbc.proxy.ConnectionProxyFactory.createConnectionProxy(ConnectionProxyFactory.java:78)
    at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:658)
    at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:613)
    at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:607)
    at org.springframework.jdbc.datasource.DelegatingDataSource.getConnection(DelegatingDataSource.java:83)
    at com.trgr.cobalt.dataorch.datasource.BaseDODataSource.getRawConnection(BaseDODataSource.java:76)
    at com.trgr.cobalt.dataorch.datasource.BaseDODataSource.getConnection(BaseDODataSource.java:46)
    at com.trgr.cobalt.dataorch.datasource.BaseDODataSource.getConnection(BaseDODataSource.java:35)
    at org.eclipse.persistence.sessions.JNDIConnector.connect(JNDIConnector.java:126)
    at org.eclipse.persistence.sessions.JNDIConnector.connect(JNDIConnector.java:94)
    at org.eclipse.persistence.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:162)
    at org.eclipse.persistence.internal.databaseaccess.DatasourceAccessor.connectInternal(DatasourceAccessor.java:327)
    at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.connectInternal(DatabaseAccessor.java:291)
    at org.eclipse.persistence.internal.databaseaccess.DatasourceAccessor.connect(DatasourceAccessor.java:415)
    at org.eclipse.persistence.sessions.server.ConnectionPool.buildConnection(ConnectionPool.java:155)
    at org.eclipse.persistence.sessions.server.ExternalConnectionPool.startUp(ExternalConnectionPool.java:118)
    at org.eclipse.persistence.sessions.server.ServerSession.connect(ServerSession.java:495)
    at org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.login(DatabaseSessionImpl.java:627)
    at org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:230)
    at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:389)
    at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:164)



这是我的弹簧配置

<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter"
    lazy-init="false">
    <property name="namingStrategy" ref="namingStrategy"></property>
    <property name="assembler" ref="assembler"></property>
    <property name="autodetect" value="true" />
</bean>

<bean id="attributeSource"
    class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource" />
<bean id="assembler"
    class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler">
    <property name="attributeSource" ref="attributeSource" />
</bean>
<bean id="namingStrategy"
    class="org.springframework.jmx.export.naming.MetadataNamingStrategy">
    <property name="attributeSource" ref="attributeSource" />
</bean>


<bean class="myclass.jmx.DocumentMBean"
    p:schedulerService-ref="documentService" />

<bean class="myclass.jmx.DocumentMXBean"
    p:schedulerService-ref="documentService" />


DocumentMBean是常规MBean。 DocumentMXBean是MXBean。这两个bean使用相同的documentService服务类,后者使用相同的DAO类从Oracle数据库获取数据。 DocumentMBean正确返回数据。 DocumentMXBean具有上述错误。

有谁知道为什么在类加载器中不可见oracle.ucp.jdbc.LabelableConnection类?仅当我执行MXBean时才会发生这种情况。我的MBean正确返回数据。我的WEB-INF / lib文件夹中有包含该类的jar文件。并将其部署在Tomcat中。我从Eclipse中启动Tomcat。

更新1:

通过将那些“不可见”类的jar文件添加到Eclipse中的Tomcat类路径,我能够临时解决此问题。似乎对于加载MBean而言,JConsole / java正在使用我的Web应用程序类加载器,该类可以访问类加载器所需的所有库。但是,当加载MXBean时,JConsole / java使用Tomcat的类加载器。

我的问题是:在加载MBean或MXBean时,是否有一种方法可以使用相同的类加载器(这是我的Web应用程序类加载器)来强制Tomcat / Eclipse / Java?

更新2:

我发现在加载Web应用程序时,Spring使用Web应用程序的类加载器,而Tomcat在加载任何MXBean时使用JVM类加载器,该类中没有我的oracle类路径。因此,解决方法是使用我类的类加载器,而不是JVM中的类加载器。代码应为:


    try
    {
    // your codes here

    // Get the current class-loader. This might be the class-loader from Tomcat
    ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();

    // Set the class-loader to be the one from the DO and not the one from Tomcat
    Thread.currentThread().setContextClassLoader(getClass().getClassLoader());

    // your codes here
    }
    catch (Exception e)
    {
       // your codes here
    }
    finally
    {
       // Remember to set back the original class-loader
       Thread.currentThread().setContextClassLoader(contextClassLoader);
    }

最佳答案

MXBean可能是由容器类加载器而不是Web应用程序加载的。如果驱动程序位于应用程序li​​b目录中,则将导致您遇到的问题。

在这种情况下,将驱动程序移至tomcat / lib目录。

07-24 09:26