Tim Funk wrote:
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'
memoryM
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'
Tim Funk wrote:
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
Yes, there was one file with a .jsp extension that didn't include
taglibs.jspf before header.jspf. No
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 ar
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:
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 m
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 my Ant build.xml to precompile the JSPs,
so that I can check they do not reference any unknown custom tags.
However, JspC appears