diff --git a/docs/faq.html b/docs/faq.html index 405a06343..4529bd67e 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -243,6 +243,9 @@
+ + How to I precompile Java Server Pages (JSPs)? +
+Ant has a built in optional task <jspc> + which was intended for that. But this task is deprecated. + Here the alternative suggested by the manual:
+Instead of relying on container specific JSP-compilers we suggest deploying + the raw files (*.jsp) and use the container build-in functions: after deploying + run a test suite (e.g. with + Cactus or + HttpUnit) against the deployed web + application. So you'll get then test result and the compiled JSPs.
+How do I realize os--specific configurations?
diff --git a/xdocs/faq.xml b/xdocs/faq.xml index 33cf6b92f..55e1fe01a 100644 --- a/xdocs/faq.xml +++ b/xdocs/faq.xml @@ -324,6 +324,21 @@ Apache Ant version 1.6.2 compiled on July 16 2004Ant has a built in optional task <jspc> + which was intended for that. But this task is deprecated. + Here the alternative suggested by the manual:
+Instead of relying on container specific JSP-compilers we suggest deploying + the raw files (*.jsp) and use the container build-in functions: after deploying + run a test suite (e.g. with + Cactus or + HttpUnit) against the deployed web + application. So you'll get then test result and the compiled JSPs.
+