vote up 2 vote down star
1

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?

flag

75% accept rate

2 Answers

vote up 0 vote down check

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.

link|flag
vote up 1 vote down

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.

http://blog.boyandi.net/?p=11

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.