JspDoc has been created just for that
jspDoc is able to browse a collection of jsp. The principle is very similar to JavaDoc, you add a comment section to each of your jsp like:
<% /**
<doc>
<name>directory2.jsp</name>
<category>System</category>
<summary>List all jsp files with category and summary</summary>
<history><date>10/08/01 us</date> Gilbert Brault
<action> creation</action>
</history>
<history><date>10/25/01 us</date> Gilbert Brault
<action> adapted pharos:foreach switch itCounter to Integer (was int before)</action>
</history>
<outline>
<ul>
<li>if refresh set or new session, list all jsp files of the server and parse them</li>
<li>List files according to the following criteria
<ul>
<li>creation order (item #) column</li>
<li>file name (no case sensitive)</li>
<li>category of processing</li>
</ul>
</li>
</ul>
</outline>
<todo>
<ul>
<li>display modification date and allow ordering by dates</li>
</ul>
</todo>
<copyright>Schneider-Electric 2001</copyright>
</doc>
*/
and your are able to browse this collection with three services:
- directory -> list all jsp with comments
- document -> provide a summary of the jsp structure, including the above documentation
- jspskelton: render the html and embedd the jsp as text
see: http://jspdoc.sourceforge.net/