[Resin-interest] Bug in 4.0.0: JSP tags cause page to recompile every time.

2009-06-24 Thread Rick Mann
I've got a fairly straightforward page that includes these lines: %@ taglib prefix=lz tagdir=/WEB-INF/tags/lz % . . . head titleMy Page/title lz:base/ . . . /head . . . In resin 4.0.0, the presence of the lz:base/ tag triggers some work on Resin's part that results in recompiling

Re: [Resin-interest] Bug in 4.0.0: JSP tags cause page to recompile every time.

2009-06-24 Thread Rick Mann
Slight clarification: the tag isn't getting recompiled, just the page that calls it. On Jun 24, 2009, at 18:57:57, Rick Mann wrote: I've got a fairly straightforward page that includes these lines: %@ taglib prefix=lz tagdir=/WEB-INF/tags/lz % . . . head titleMy Page/title

Re: [Resin-interest] Bug in 4.0.0: JSP tags cause page to recompile every time.

2009-06-24 Thread Rick Mann
I found a partial solution: I added this line to app-default.xml: compiling-loader path=WEB-INF/work/ It seems to me resin ought to implicitly add the work-dir, wherever it happens to be, but now the class loader can find the classes. On Jun 24, 2009, at 19:06:10, Rick Mann wrote: