on't compile
3) The documentation is straightforward - look for *.jsp and compile it.
If a page is not meant to be compiled - then don't give it the jsp
suffix. When writing in C, people don't compile *.h - they compile *.c.
People don't write headers with file extensions of .
all it directly potentially bypassing validations or other
logic.
-Tim
Martin Lambert wrote:
> Hi,
>
> I'm having problems doing JSP pre-compilation using Tomcat's JSP
> pre-compilation libraries and Ant. The problem is demonstrated by the
> following:
>
Hi,
I'm having problems doing JSP pre-compilation using Tomcat's JSP
pre-compilation libraries and Ant. The problem is demonstrated by the following:
test.jsp:
<% String myVar = "Hello"; %>
<%@ include file="test2.jsp" %>
Some more text
test2.jsp
Goodbye
<%= myVar + "World" %>
Testing
bu