Last updated Mar 27, 2024

How do I load a resource from a plugin?

The recommended way to get resources from the classpath in Confluence is:

1
2
InputStream in = com.atlassian.core.util.ClassLoaderUtils.getResourceAsStream(filename, this);

ClassLoaderUtils tries a couple of different classloaders, something we've occasionally found necessary in some application servers.

Rate this page: