<web-app id='/' app-dir="/path/to/acs-java-4"/>
This will map the root URL to ACS Java.
<jsp precompile='true' static-encoding='false'/>
Static encoding is an optimization that speeds up JSP output by
converting static HTML text in JSPs to static byte arrays, so that
charset conversion (two-byte chars to one-byte ints) only has to
happen once per string per JVM, rather than every time
out.print(something) is called for each page
invocation. So
becomes something like:
out.println("this is a string literal");
But this optimization is implemented in a way that breaks explicit
static byte[] _jsp_string_0 = "this is a string literal".getBytes();
out.write(_jsp_string_0);
pageContext.pushBody()calls from JSP, which we need to
make the templating <property> tag work.
$ACS_JAVA/run $RESIN_HOME/bin/httpd.sh
| Document Revision # | Action Taken, Notes | When? | By Whom? |
|---|---|---|---|
| 0.1 | Creation | January 20, 2001 | Bill Schneider |