日期:2014-05-16 浏览次数:20383 次
jsp预编译有以下好处: 1.省去第一次运行jsp时的编译所花费的时间,实现servlet一样,一步到位的运行。 2.有效的保护源代码,在产品发布的时候只需要提供依据编译好的class文件,不需要提供jsp源文件,对保护jsp源代码有好处,虽然class文件没有混淆,但是很少人愿意手工去把预编译jsp产生的class文件还原为jsp(目前还没发现有自动还原为jsp的工具)。 但是,也注意,如果为了享受第二个好处,那么也就注意,你需要为不同的servlet容器进行不同的预编译。 比如tomcat的是org.apache.jasper.JspC,而Weblogic的是weblogic.jspc 用Tomcat进行预编译的ant脚本如下: build.properties的内容为: tomcat.home=D:/jakarta-tomcat-5.5.9 build.xml的内容为: <project name="Webapp Precompilation" default="all" basedir=".">? ??? <taskdef classname="org.apache.jasper.JspC" name="jasper2" >? ??? <jasper2 javaEncoding="UTF-8" ? </target> ? <target name="compile"> ??? <mkdir dir="${webapp.path}/WEB-INF/classes"/> ??? <javac destdir="${webapp.path}/WEB-INF/classes" </project> ? 只需要设置好ant的path环境变量,然后修改build.properties。执行ant命令即可。 生成好的jar文件是lizongbo.jar。 在做为产品发布的时候,还需要清除掉${webapp.path}/WEB-INF/classes下的class文件,并且把 ${webapp.path}/WEB-INF/generated_web.xml里的servlet映射,添加到${webapp.path}/WEB-INF/web.xml中。 然后就可以删除所有预编过的jsp了。 Tomcat 5.5.9中的admin 模块就是通过jsp预编译打包为catalina-admin.jar的。 D:\jakarta-tomcat-5.5.9\server\webapps\下的几个web应用,都是使用了jsp预编译。 http://www.apache.org/dist/jakarta/tomcat-5/v5.5.9/bin/jakarta-tom
webapp.path=E:/lizongbo/mywebapp
<property file="build.properties"/>
? <target name="jspc">
????? <classpath id="jspc.classpath">?
??????? <pathelement location="${java.home}/../lib/tools.jar"/>?
??????? <fileset dir="${tomcat.home}/bin">?
????????? <include name="*.jar"/>?
??????? </fileset>?
??????? <fileset dir="${tomcat.home}/server/lib">?
????????? <include name="*.jar"/>?
??????? </fileset>?
??????? <fileset dir="${tomcat.home}/common/lib">?
????????? <include name="*.jar"/>?
??????? </fileset>?
????? </classpath>?
??? </taskdef>
???????????? validateXml="false"?
???????????? uriroot="${webapp.path}"?
???????????? webXmlFragment="${webapp.path}/WEB-INF/generated_web.xml"?
???????????? outputDir="${webapp.path}/WEB-INF/src" />
??? <mkdir dir="${webapp.path}/WEB-INF/lib"/>
?????????? optimize="of"
?????????? encoding="UTF-8"
?????????? debug="on" failonerror="false"
?????????? srcdir="${webapp.path}/WEB-INF/src"?
??? excludes="**/*.smap">
????? <classpath>
??????? <pathelement location="${webapp.path}/WEB-INF/classes"/>
??????? <fileset dir="${webapp.path}/WEB-INF/lib">
????????? <include name="*.jar"/>
??????? </fileset>
??????? <pathelement location="${tomcat.home}/common/classes"/>
??????? <fileset dir="${tomcat.home}/common/lib">
????????? <include name="*.jar"/>
??????? </fileset>
??????? <pathelement location="${tomcat.home}/shared/classes"/>
??????? <fileset dir="${tomcat.home}/shared/lib">
????????? <include name="*.jar"/>
??????? </fileset>
??????? <fileset dir="${tomcat.home}/bin">?
????????? <include name="*.jar"/>?
??????? </fileset>?
????? </classpath>
????? <include name="**" />
????? <exclude name="tags/**" />
??? </javac>
<jar jarfile="${webapp.path}/WEB-INF/lib/lizongbo.jar" basedir="${webapp.path}/WEB-INF/classes"/>
? </target>
? <target name="all" depends="jspc,compile">
? </target>