Passing JVM arguments to Tomcat when running as a service?(作为服务运行时将JVM参数传递给Tomcat?)
问题描述
我需要将几个 JVM 参数传递给运行 Tomcat 的 JVM,以便我的应用程序可以获取它们.
I need to pass a couple of JVM arguments to the JVM which Tomcat is running in so that my application can pick them up.
我想按照本文中概述的获取环境变量的过程.
I want to follow the process outlined in this article to pick up environment variables.
我该怎么做呢?
更新抱歉,这是在 windows 下运行的(客户端服务器上我的 Dev machine 2003 上的 7)
UPDATE Sorry This is running under windows (7 on my Dev machine 2003 on client server)
推荐答案
您需要编辑 Windows 服务.有三种方法可以做到这一点:
You need to edit the Windows service. There are three ways to do this:
使用
//MS//
ServiceName 启动Tomcat5w
以在系统托盘中获取一个图标,以便您快速访问到服务的配置.
Start
Tomcat5w
with//MS//
ServiceName to get an icon in the system tray which gives you a quick access to the configuration of the service.
在控制面板"中打开服务管理器.Tomcat 有一个条目.
Open the service manager in the "Control Panel". There is an entry for Tomcat.
在编辑器中有一个选项卡,您可以在其中添加其他 JVM 参数.
In the editor, there is a tab where you can add additional JVM parameters.
第三种方式(我更喜欢)是编写一个脚本来为您编辑配置.这样,您可以将配置保存在某处以进行备份.请参阅 文档如何做到这一点(提示:使用 tomcat5//美国//...
)
The third way (which I prefer) is to write a script which edits the config for you. This way, you can save the config somewhere for backup. See the docs how to do that (Hint: use tomcat5 //US//...
)
这篇关于作为服务运行时将JVM参数传递给Tomcat?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:作为服务运行时将JVM参数传递给Tomcat?
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01