[
https://issues.apache.org/jira/browse/ARTEMIS-5974?focusedWorklogId=1012017&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-1012017
]
ASF GitHub Bot logged work on ARTEMIS-5974:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 29/Mar/26 04:14
Start Date: 29/Mar/26 04:14
Worklog Time Spent: 10m
Work Description: jbertram opened a new pull request, #6324:
URL: https://github.com/apache/artemis/pull/6324
(no comment)
Issue Time Tracking
-------------------
Worklog Id: (was: 1012017)
Remaining Estimate: 0h
Time Spent: 10m
> Replace FactoryFinder with Java ServiceLoader
> ---------------------------------------------
>
> Key: ARTEMIS-5974
> URL: https://issues.apache.org/jira/browse/ARTEMIS-5974
> Project: Artemis
> Issue Type: Task
> Reporter: Justin Bertram
> Assignee: Justin Bertram
> Priority: Major
> Labels: pull-request-available
> Time Spent: 10m
> Remaining Estimate: 0h
>
> The {{artemis-cli}} module uses a custom
> {{org.apache.activemq.artemis.utils.FactoryFinder}} implementation which can
> be replaced by {{java.util.ServiceLoader}}.
> Using {{ServiceLoader}} provides (among other things):
> - Standard, well-understood service discovery mechanism
> - Reduced maintenance burden
> - Type safety (i.e., eliminates casting from {{Object}})
> - Simpler service provider file format
> - Consistency with the rest of the code-base
> Old format: Properties files at
> {{META-INF/services/org/apache/activemq/artemis/broker/<scheme>}} containing:
> {noformat}
> class=<fully.qualified.ClassName>{noformat}
> New format: Plain text files at
> {{META-INF/services/<fully.qualified.InterfaceName>}} containing:
> {noformat}
> <fully.qualified.ImplementationName>
> <fully.qualified.ImplementationName>{noformat}
> There will be no API changes or behavioral differences. The broker will
> continue to discover and load factory implementations exactly as before, just
> using the standard Java mechanism.
> Existing tests will verify functionality and ensure there are no regressions.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]