由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Re: 一个最近完成的JAVA项目的反思。
相关主题
Please Help![转载] JSP access database的问题
问个J2EE server跟Apache Web Server的问题?请问JSP里这个怎么设
Re: Expert, help me, please -Java Server Environment set upJSP菜鸟一问
SOS! question of Apache Jserv关于Jsp timeout
找在servlet里处理上传文件的包问一个J2EE和Tomcat问题
谁能介绍一下java有哪些比较有名的open source projectJ2EE和未来工作问题
Java Http Question?session lost between JSP and Struts
JSP and TOMCAT 问题Question on JSP EL
相关话题的讨论汇总
话题: tomcat话题: apache话题: jserv话题: jsp话题: files
进入Java版参与讨论
1 (共1页)
m**i
发帖数: 89
1

That's not JServ. It is AJP12 connector only. In future, you can
install Tomcat as a standard Apache module.
I feel it is not so complicated. If you run Tomcat + Apache, any *.jsp
under Apache's htdocs and its subdirectories will be treated as Tomcat
files----If you've configured them correctly.
You can also deploy your JSPs as WAR files.
You have to compile some native C code which are stored in jakarta-tomcat/
src/native/nt_service
m**i
发帖数: 89
2

No. What you need do, is to add followings into Apache's httpd.conf
LoadModule jserv_module libexec/mod_jserv.so
ApJServManual on
ApJServDefaultProtocol ajpv12
ApJServSecretKey DISABLED
ApJServMountCopy on
ApJServLogLevel notice
ApJServDefaultPort 8007
AddType test/jsp .jsp
AddHandler jserv-servlet .jsp
Restart your Apache and Tomcat, then all *.jsp files under Apache's
document diectories will be handled by tomcat.
m*****e
发帖数: 4193
3
A better way is to use "include" to include the tomcat-apache.conf generated
by TomCat.

【在 m**i 的大作中提到】
:
: No. What you need do, is to add followings into Apache's httpd.conf
: LoadModule jserv_module libexec/mod_jserv.so
: ApJServManual on
: ApJServDefaultProtocol ajpv12
: ApJServSecretKey DISABLED
: ApJServMountCopy on
: ApJServLogLevel notice
: ApJServDefaultPort 8007
: AddType test/jsp .jsp

m**i
发帖数: 89
4

Yes, a pure engine. You know, tomcat is a stand alone application.
Catalina will be an engine only (like Gecko of Mozilla). Catalina is
the core of new Tomcat, but it can be treated as a seperate
engine, and can be hooked into IDE tools.
I don't know JetSpeed. Sorry. Actually, I don't like java.apache.org and
its projects:-)
1 (共1页)
进入Java版参与讨论
相关主题
Question on JSP EL找在servlet里处理上传文件的包
question about using Runtime.getRuntime.exec() in Tomcat谁能介绍一下java有哪些比较有名的open source project
tomcat 快要把我逼疯了, 高手帮忙。Java Http Question?
Tomcat JSP syntax errorJSP and TOMCAT 问题
Please Help![转载] JSP access database的问题
问个J2EE server跟Apache Web Server的问题?请问JSP里这个怎么设
Re: Expert, help me, please -Java Server Environment set upJSP菜鸟一问
SOS! question of Apache Jserv关于Jsp timeout
相关话题的讨论汇总
话题: tomcat话题: apache话题: jserv话题: jsp话题: files