[
https://issues.apache.org/jira/browse/TOMEE-2756?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Richard Zowalla closed TOMEE-2756.
----------------------------------
Resolution: Cannot Reproduce
Closing: reported against TomEE 7.x (end of life) and not confirmed on current
versions. Please reopen or file a new issue if this still happens on TomEE 10.x
or later.
> Typo in the DeploymentsResolver causes excluding all URLs
> ---------------------------------------------------------
>
> Key: TOMEE-2756
> URL: https://issues.apache.org/jira/browse/TOMEE-2756
> Project: TomEE
> Issue Type: Bug
> Components: TomEE Core Server
> Affects Versions: 7.0.5
> Environment: Ubuntu 18.04, Embedded TomEE 7.0.5
> Reporter: RomanKa
> Priority: Major
> Original Estimate: 0.25h
> Time Spent: 10m
> Remaining Estimate: 5m
>
> In the project: openejb-core
> Is in the package: org.apache.openejb.config
> Class: DeploymentsResolver
> Method: loadFromClasspath
> Line: 264
> There is typo there from refactoring done 5 years ago, which prevent us from
> upgrading.
> Current code:
> {code:java}
> UrlSet unchecked = new UrlSet(); if
> (!searchResult.filterDescriptors) {
> unchecked =
> NewLoaderLogic.applyBuiltinExcludes(searchResult.prefiltered.exclude(searchResult.prefiltered));
> if (searchResult.filterSystemApps) {
> unchecked =
> unchecked.exclude(".*/openejb-[^/]+(.(jar|ear|war)(./)?|/target/classes/?)");
> }
> processUrls("DeploymentsResolver2", unchecked.getUrls(),
> classLoader, EnumSet.allOf(RequireDescriptors.class), jarList);
> } {code}
> In the exclude should be urlSet instead of prefiltered, otherwice all URL are
> excluded:
> {code:java}
> unchecked =
> NewLoaderLogic.applyBuiltinExcludes(searchResult.prefiltered.exclude(searchResult.urlSet));
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)