How do JSP custom tag libs from external libraries work?
If you have programmed a custom JSP tag library you should know that you may reference either a URI declared in the web.xml tab-lib element, or reference directly the tld file inside your webapp.
However, when I use an existing taglib such as DisplayTag that is packaged in a jar file included in my web app, you just use the URI. So my question is, how does the container know where to locate the custom tag classes?
链接地址: http://www.djcxy.com/p/12960.html上一篇: 如何打包和使用自定义taglib(maven jar项目)
下一篇: 外部库的JSP自定义标签库如何工作?