» 网友学堂 » JSP教程 » WebLogic的初步研究(1-2)
WebLogic的初步研究(1-2)
作者:hinet 发表时间:2007-3-3 02:13 阅读:991次 在百度搜索相关内容

设置运行JSP:


# WEBLOGIC JSP PROPERTIES

# ------------------------------------------------

# Sets up automatic page compilation for JSP. Adjust init args for

# directory locations and uncomment to use.

#weblogic.httpd.register.*.jsp=\

#weblogic.servlet.JSPServlet

#weblogic.httpd.initArgs.*.jsp=\

#pageCheckSeconds=1,\

#compileCommand=c:/jdk1.2.1/bin/javac.exe, \

#workingDir=/weblogic/myserver/classfiles, \

#verbose=true


把那些注释删去,即改为


# WEBLOGIC JSP PROPERTIES

# ------------------------------------------------

# Sets up automatic page compilation for JSP. Adjust init args for

# directory locations and uncomment to use.

weblogic.httpd.register.*.jsp=\

weblogic.servlet.JSPServlet

weblogic.httpd.initArgs.*.jsp=\

pageCheckSeconds=1,\

compileCommand=c:/jdk1.2.1/bin/javac.exe, \

workingDir=/weblogic/myserver/classfiles, \

verbose=true

要注意的是还要配置好这一行:

compileCommand=/usr/local/jdk1.2/bin/javac, \

这是JDK的JAVA编译器的路径。