当前位置: 首页 > 图文教程 > 网络编程 > JSP > WebLogic的初步研究(1-2)

JSP
JSP的login程序代码
编写线程安全的JSP程序
通过JSP的预编译消除性能瓶颈
JSP学习心得
使用JSP开发WebMail系统
在jsp中用bean和servlet联合实现用户注册、登录
在Linux环境下安装JSP
jsp页面调用applet实现人民币的大小写转换
JSP+XML构架网站的实例
用缓冲技术提高JSP应用的性能和稳定性
配置Web应用环境实现JSP留言簿
用JSP创建可重用的图形背景
轻松使用JSP生成饼图
Jdbc连Sybase数据库的几种方法
用定制标签库和配置文件实现对JSP页面元素的访问控制
Jsp结合XML+XSLT将输出转换为Html格式
用JSP操作Cookie
安装resin+mysql+IIS+JDK的总结
JSP的运行内幕
指南:想成为一个JSP网站程序员吗?

JSP 中的 WebLogic的初步研究(1-2)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-04   浏览: 89 ::
收藏到网摘: n/a

设置运行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编译器的路径。