You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2021/12/02 22:20:00 UTC

[jira] [Work logged] (ARTEMIS-3596) ServiceLoader.load causing issues in OSGi enviroments.

     [ https://issues.apache.org/jira/browse/ARTEMIS-3596?focusedWorklogId=689634&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-689634 ]

ASF GitHub Bot logged work on ARTEMIS-3596:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 02/Dec/21 22:19
            Start Date: 02/Dec/21 22:19
    Worklog Time Spent: 10m 
      Work Description: clebertsuconic commented on a change in pull request #3869:
URL: https://github.com/apache/activemq-artemis/pull/3869#discussion_r761508472



##########
File path: artemis-core-client/src/main/java/org/apache/activemq/artemis/spi/core/remoting/ssl/OpenSSLContextFactoryProvider.java
##########
@@ -25,7 +25,7 @@
    private static final OpenSSLContextFactory FACTORY;
    static {
       OpenSSLContextFactory factoryWithHighestPrio = null;
-      for (OpenSSLContextFactory factory : ServiceLoader.load(OpenSSLContextFactory.class)) {

Review comment:
       Can't you use ThreadContextClass Loader on all the tests here?
   
   it would be nice to have a test.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscribe@activemq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 689634)
    Remaining Estimate: 0h
            Time Spent: 10m

> ServiceLoader.load causing issues in OSGi enviroments.
> ------------------------------------------------------
>
>                 Key: ARTEMIS-3596
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-3596
>             Project: ActiveMQ Artemis
>          Issue Type: Bug
>          Components: osgi
>    Affects Versions: 2.19.0
>            Reporter: Ryan Yeats
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Our system runs Artemis inside of Karaf as an OSGi bundle. Starting with version 2.19.0 of Artemis, Artemis fails to start correctly due to an exception during the bundle resolution process. The problems happens when the artemis-server-osgi bundle is reloaded by the bundle resolution process.  The bundle starts correctly the first time, but during the resolution process, an import Artemis uses is refreshed causing the bundle to be reloaded. Consequently, the  ServiceLoader.load method is called again by the static initializer block in the  SSLContextFactoryProvider class. The ServiceLoader.load is passed in a class loader is obtained by calling Thread.currentThread.getContextClassloader(). The first time the static initializer block is executed, the classes DefaultSSLContextFactory and its interface, SSLContextFactory, are loaded. However, on reload Thread.currentThread.getContextClassloader() returns the original DefaultSSLContextFactory which is no long the one corresponding to the class loader of the bundle the second time it is started. Resulting in the following error message:
> org.apache.activemq.artemis.spi.core.remoting.ssl.SSLContextFactory: org.apache.activemq.artemis.core.remoting.impl.ssl.DefaultSSLContextFactory not a subtype
> I believe the best way to fix this is to change
> ServiceLoader.load(SSLContextFactory.class, Thread.currentThread().getContextClassLoader())
> to 
> ServiceLoader.load(SSLContextFactory.class, SSLContextFactoryProvider.class.getClassLoader())
> Which for any environment that doesn’t juggle class-loaders like OSGi would evaluate to the same class-loader.
> I also noticed several places that ServiceLoader.load(<class>.class) was called which should also be changed to pass in the class-loader of the class since they would default to the thread context class-loader also.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)