[
https://issues.apache.org/jira/browse/TAMAYA-400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anatole Tresch resolved TAMAYA-400.
-----------------------------------
Resolution: Fixed
> Use ThreadContext ClassLoader as default
> ----------------------------------------
>
> Key: TAMAYA-400
> URL: https://issues.apache.org/jira/browse/TAMAYA-400
> Project: Tamaya
> Issue Type: Bug
> Components: API, Core
> Reporter: Anatole Tresch
> Assignee: Anatole Tresch
> Priority: Major
> Fix For: 0.4-incubating
>
>
> Use the thread class loader as default classloader. This is necessary for
> correctly implement the Microprofile specs:
> {code:java}
> public static ClassLoader getDefaultClassLoader() {
> ClassLoader cl = Thread.currentThread().getContextClassLoader();
> if(cl==null) {
> cl = ServiceContextManager.class.getClassLoader();
> }
> return cl;
> }{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)