Re: uri question..
maya <[email protected]>
| Newsgroups | gmane.comp.jakarta.taglibs.user |
|---|---|
| Message-ID | <[email protected]> |
Eric Haszlakiewicz wrote: > 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 this gets more confusing.. here at work I see this: uri="struts-tiles.tld" I thought the uri was to point out where CLASSES (or tag files) are, not tld's... thanks...