<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JSP recursion</title>
	<atom:link href="http://blog.boyandi.net/2007/11/21/jsp-recursion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/</link>
	<description>notes about ui, web development, visualization. links, tips and tricks</description>
	<lastBuildDate>Fri, 02 Jul 2010 14:11:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: DonReno</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6677</link>
		<dc:creator>DonReno</dc:creator>
		<pubDate>Fri, 02 Jul 2010 14:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6677</guid>
		<description>Hi, thanks for that info, that&#039;s really what i was looking for.

Greetings.</description>
		<content:encoded><![CDATA[<p>Hi, thanks for that info, that&#8217;s really what i was looking for.</p>
<p>Greetings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Den</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6675</link>
		<dc:creator>Den</dc:creator>
		<pubDate>Thu, 01 Jul 2010 14:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6675</guid>
		<description>Thanks very much, it works! It helped me to avoid converting hierarchical structure to linear table!</description>
		<content:encoded><![CDATA[<p>Thanks very much, it works! It helped me to avoid converting hierarchical structure to linear table!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya Boyandin</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6672</link>
		<dc:creator>Ilya Boyandin</dc:creator>
		<pubDate>Tue, 29 Jun 2010 09:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6672</guid>
		<description>@Gabor: I think you did something wrong. You shouldn&#039;t get an endless loop exactly because &#039;node&#039; is overwritten.</description>
		<content:encoded><![CDATA[<p>@Gabor: I think you did something wrong. You shouldn&#8217;t get an endless loop exactly because &#8216;node&#8217; is overwritten.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabor</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6666</link>
		<dc:creator>Gabor</dc:creator>
		<pubDate>Fri, 25 Jun 2010 15:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6666</guid>
		<description>this stuff does not work
you get and endless loop because &#039;node&#039; gets overwritten in the inner loop</description>
		<content:encoded><![CDATA[<p>this stuff does not work<br />
you get and endless loop because &#8216;node&#8217; gets overwritten in the inner loop</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emily</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6605</link>
		<dc:creator>Emily</dc:creator>
		<pubDate>Wed, 02 Jun 2010 10:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6605</guid>
		<description>Thanks for your post on JSP recursion. This is exactly what I was looking for. I needed to generate a tree structure for DHTML flyout menus. I had resigned myself to having to generate the desired html in a custom tag. But the downside to this approach is embedding html in Java and taking the maintenance of the navigation style out of my designer&#039;s hands and placing it in my own. This solution is much more elegant by keeping the html where it belongs.</description>
		<content:encoded><![CDATA[<p>Thanks for your post on JSP recursion. This is exactly what I was looking for. I needed to generate a tree structure for DHTML flyout menus. I had resigned myself to having to generate the desired html in a custom tag. But the downside to this approach is embedding html in Java and taking the maintenance of the navigation style out of my designer&#8217;s hands and placing it in my own. This solution is much more elegant by keeping the html where it belongs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-6590</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 28 May 2010 20:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-6590</guid>
		<description>That&#039;s right. I think this is the only possibility to reuse parts of jsp code. You can reuse chunks of generated HTML defining variables with c:set, but not JSP.</description>
		<content:encoded><![CDATA[<p>That&#8217;s right. I think this is the only possibility to reuse parts of jsp code. You can reuse chunks of generated HTML defining variables with c:set, but not JSP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-4731</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 12 Oct 2009 13:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-4731</guid>
		<description>Thanks for this - you could do with updating your example to use camel case c:forEach</description>
		<content:encoded><![CDATA[<p>Thanks for this &#8211; you could do with updating your example to use camel case c:forEach</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lars</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-3121</link>
		<dc:creator>lars</dc:creator>
		<pubDate>Thu, 15 Jan 2009 14:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-3121</guid>
		<description>Hi.

I&#039;m a newbie to J2EE. Could you explain what do you mean by &quot;redefine the variables you need in the “request” scope&quot;? I have a tree structure which i like to show. Does it mean that i have to fetch the tree structure for every call of node.asp? Or can I &quot;hand over&quot; the (sub)tree structure to each node.jsp?</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>I&#8217;m a newbie to J2EE. Could you explain what do you mean by &#8220;redefine the variables you need in the “request” scope&#8221;? I have a tree structure which i like to show. Does it mean that i have to fetch the tree structure for every call of node.asp? Or can I &#8220;hand over&#8221; the (sub)tree structure to each node.jsp?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya Boyandin</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-1092</link>
		<dc:creator>Ilya Boyandin</dc:creator>
		<pubDate>Tue, 05 Feb 2008 09:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-1092</guid>
		<description>That&#039;s right. I think this is the only possibility to reuse parts of jsp code. You can reuse chunks of generated HTML defining variables with c:set, but not JSP.</description>
		<content:encoded><![CDATA[<p>That&#8217;s right. I think this is the only possibility to reuse parts of jsp code. You can reuse chunks of generated HTML defining variables with c:set, but not JSP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://blog.boyandi.net/2007/11/21/jsp-recursion/comment-page-1/#comment-1091</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Tue, 05 Feb 2008 03:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.boyandi.net/?p=11#comment-1091</guid>
		<description>hi,

if i want to use your code does that mean I need to create a jsp just to house this code and then make my main jsp call this jsp ?</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>if i want to use your code does that mean I need to create a jsp just to house this code and then make my main jsp call this jsp ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

