[
https://issues.apache.org/jira/browse/FELIX-2951?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13049333#comment-13049333
]
Richard S. Hall commented on FELIX-2951:
----------------------------------------
Regardin "context finder", no, the Felix framework doesn't have something
similar because there are issues with that approach too, e.g.:
http://www.mail-archive.com/[email protected]/msg03304.html
And we try to avoid containerisms as much as possible in Felix.
Technically, isn't it possible to provide your own context finder? Isn't that
value inherited by threads? If so, just start the Felix framework with a thread
whose TCCL is set to your context finder, then the framework threads will have
it too, no?
> guidelines: felix osgi bundle class load vs
> Thread.currentThread().getContextClassLoader().getResource("")
> ------------------------------------------------------------------------------------------------------------------
>
> Key: FELIX-2951
> URL: https://issues.apache.org/jira/browse/FELIX-2951
> Project: Felix
> Issue Type: Improvement
> Components: Framework
> Affects Versions: framework-3.2.1
> Reporter: Andrei Pozolotin
>
> Richard, hello;
> 1) here you say
>
> http://old.nabble.com/Can-the-thread-context-classloader-issue-be-solved-at-all--td28260809.html
> that "There is no reliable way to do this since..."
> 2) this project
> http://pivot.apache.org/index.html
> is using this kind of pattern quite often:
> ImageView ::
> /**
> * Sets the image view's image by {@linkplain
> ClassLoader#getResource(String)
> * resource name}.
> *
> * @param imageName
> * The resource name of the image to set.
> *
> * @see #setImage(URL)
> */
> public final void setImage(String imageName) {
> if (imageName == null) {
> throw new IllegalArgumentException("imageName is null.");
> }
> ClassLoader classLoader =
> Thread.currentThread().getContextClassLoader();
> setImage(classLoader.getResource(imageName.substring(1)));
> }
> 3) instead of trying to work around this inside of felix, can you please
> provide
> a set of guidelines for developers of projects such as apache pivot,
> so the issue is gone?
> thank you;
> Andrei
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira