I am implementing a tree tag for one of my practice projects, where I would display the contents of a directory in the form of a tree (recursively). I had implemented a similar requirement as a Custom Tag in Java during the pre-JSP2.0 days. Handling a directory needs recursion (to handle the subdirectories)! Is it possible to code this as tag files and can they be used in a recursive manner?
|
|
I atlast completed the code using JSP tag files instead of JSP tag libs or plain JSTL. Thanks Mike, it was similar to the lines of what you said. |
||
|
|
|
|
I didn't think this was possible, but here is a way to do it. You recursively include the jsp itself. See the link for an explanation. |
||
|
|
