System.getProperty(“catalina.base”) 仅适用于 Tomcat?
System.getProperty("catalina.base")
仅提供 Tomcat 主目录,还是也可以在 GlassFish 或 WebSphere 等服务器上运行?
System.getProperty("catalina.base")
给了我以下路径:
C:\Tomcat 6.0
Does System.getProperty("catalina.base")
give only the Tomcat home, or does it also work on servers like GlassFish or WebSphere?
System.getProperty("catalina.base")
gives me the following path:
C:\Tomcat 6.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅适用于雄猫。 Catalina是tomcat特有的东西!
Catalina 基本上是 tomcat 使用的 servlet 容器。
Only for tomcat. Catalina is a tomcat specific thing!
Catalina is basically the servlet container used by tomcat.
简而言之,是。
Catalina 指 Tomcat Servlet Container,Tomcat Web 应用程序服务器的模块,实现 Servlet 和 JSP Sun Microsystems 规范。
其他模块包括Coyote、Jasper和Jasper 2。
以上适用于Tomcat 6。我不知道最新Tomcat版本的详细信息。
In short, yes.
Catalina refers to the Tomcat Servlet Container, the module of the Tomcat Web Application Server that implements the Servlet and JSP Sun Microsystems Specification.
Other modules include Coyote, Jasper and Jasper 2.
The above applies to Tomcat 6. I don't know the details of the latest Tomcat release.