well.... getClass().getClassLoader() might possibly not be the
applications classloader??? Do you get the same result if you
precompile the jsp?
thanks
david jencks
On Jan 25, 2007, at 12:31 PM, Jarek Gawor wrote:
Hi,
I have a question on resource visibly to classloaders. Here's an
example. I have a following JSP page packaged in .war file. The JSP
tries to load some descriptors packaged in the war file in two
different ways. The question is should the fist method work?
The JSP does:
System.out.println(getClass().getResource("/WEB-INF/web.xml"));
System.out.println(getServletConfig().getServletContext
().getResource("/WEB-INF/web.xml"));
and first method returns null but second works as expected. Anybody
knows quick answer to this?
Thanks,
Jarek