Skip to content

Instantly share code, notes, and snippets.

@rbe
Created June 29, 2012 13:14
Show Gist options
  • Select an option

  • Save rbe/3017847 to your computer and use it in GitHub Desktop.

Select an option

Save rbe/3017847 to your computer and use it in GitHub Desktop.
Find resources in a web application
// Find resources in e.g. META-INF/resources/tpl/
Set<String> res = getServletContext().getResourcePaths("/tpl/");
if (null != res) {
for (String s : res) {
System.out.println(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment