Re: Compiling JSPs - how to ignore files with certain extensions.

2005-12-06 Thread Tim Funk
What tomcat version and commands are you using? IIRC - jspf files by default are not precompiled. -Tim Chris Wareham wrote: I have a web app structured as follows: myapp/footer.jspf myapp/header.jspf myapp/index.jsp myapp/taglibs.jspf myapp/WEB-INF/... I would like to add a target to

Re: Compiling JSPs - how to ignore files with certain extensions.

2005-12-06 Thread Chris Wareham
Tim Funk wrote: What tomcat version and commands are you using? IIRC - jspf files by default are not precompiled. I started with Tomcat 5.0.30, but have switched to 5.5.12. The ant targets that I am using is similar to the ones in the Tomcat docs: target name=init-jsp depends=build

Re: Compiling JSPs - how to ignore files with certain extensions.

2005-12-06 Thread Tim Funk
I suspect that you have a file which includes header.jspf - and that parent file is not including the fn tag lib. (The (potentially) bad error message is another issue) -Tim Chris Wareham wrote: Tim Funk wrote: What tomcat version and commands are you using? IIRC - jspf files by default

Re: Compiling JSPs - how to ignore files with certain extensions.

2005-12-06 Thread Tim Funk
For the OOM error - you might want to add compile=false to your jsp2 task so compilation is not done. (.tag files still end up being compiled but thats a different issue) Then for your javac task add (increase as appropriate) fork='true' memoryInitialSize='192m' memoryMaximumSize='356m'