我正在尝试为我正在部署的第三方应用程序配置传递到TomCat的
Java选项.该应用提供的说明如下:
- Open the Tomcat configuration tool from the Windows menu at Start > All
Programs > Apache Tomcat > Tomcat Configuration.- Click Configure and select the Java tab.
- At the bottom of the Java Options field,enter the following:
-Dexample.license.directory="C:\Program Files\example"
- Stop and restart the application server.
但是,我需要以编程方式执行此操作,因此我想知道可以设置这些选项的配置文件.使用GUI对于将应用程序部署到其他开发人员的环境是不切实际的.
(如果相关,我正在使用Tomcat 6.0 …)
如果您使用Tomcat作为Windows服务,则可以通过转到bin目录并运行来调整JVM选项:
原文链接:https://www.f2er.com/windows/369386.htmltomcat6 //US//MYSERVICENAME ++JvmOptions=-Dexample.license.directory="C:\Program Files\example"
在执行此操作之前关闭服务,并在完成后重新启动它.
我只是为我自己的tomcat服务器做了这个,它为我处理它.