JSP nested tags

i plan to write a custom tag which will wrap all content of the jsp.

will this be a problem because other jstl tags are going to live inside my tag? i remember this being a problem once.

my tag only needs the output of all the **** in the page so that it can look for some stuff and change it.

[314 byte] By [mkoryaka] at [2007-11-26 17:49:51]
# 1
Here's a nice article on JSP Custom Tags: http://java.sun.com/developer/technicalArticles/xml/WebAppDev3/
appy77a at 2007-7-9 5:02:21 > top of Java-index,Java Essentials,Java Programming...
# 2
here is what i ended up doing to make a custom tag which modifies its own body: http://notetodogself.blogspot.com/2007/02/jsp-custom-tag-to-modify-its-body.htmlmight be useful for someone.
mkoryaka at 2007-7-9 5:02:21 > top of Java-index,Java Essentials,Java Programming...