Re: uri question..
Eric Haszlakiewicz <[email protected]>
| Newsgroups | gmane.comp.jakarta.taglibs.user |
|---|---|
| Message-ID | <[email protected]> |
On Sun, Sep 10, 2006 at 01:18:19PM -0400, maya wrote: > I have been studying taglibs and beans for days now, and am still > confused about some things, but for now a simple question (I hope..) re uri: > > let's take JSTL.. the jstl.jar for my app is here.. > > /WEB-INF/lib > > yet the uri for it in taglib directive in JSP (and in <uri> tag in tld) is > > http://java.sun.com/jsp/jstl/core > > how does the container find the classes in /WEB-INF/lib/jstl.jar when > the uri points to an outside url? (and the classes are not at this url > either..;) The tld files in your WEB-INF directory also have a uri. The container matches up the uri from your jsp file with one of the uri's in the tlds. eric