Re: [Resin-interest] On the subject of JSP compilation...

2007-06-01 Thread Serge Knystautas
John Steel wrote: I've been using this pattern for some time with excellent results: % if (user == null) { % %@ include file=/jsp/loginpanel.jsp % % } else { % %@ include file=/jsp/logoutpanel.jsp % % } % I'm curious how this affects performance. In once

[Resin-interest] On the subject of JSP compilation...

2007-06-01 Thread John Steel
I've been using this pattern for some time with excellent results: % if (user == null) { % %@ include file=/jsp/loginpanel.jsp % % } else { % %@ include file=/jsp/logoutpanel.jsp % % } % I'm curious how this affects performance. In once sense, the assembled jsp is

Re: [Resin-interest] On the subject of JSP compilation...

2007-06-01 Thread Yong Bakos
John, check out resin's work directory for the source of the resulting class to which your jsp becomes. On Jun 1, 2007, at 3:35 AM, John Steel wrote: I've been using this pattern for some time with excellent results: % if (user == null) { % %@ include file=/jsp/loginpanel.jsp % %