windows – 如何在配置文件中配置TomCat Java选项?

前端之家收集整理的这篇文章主要介绍了windows – 如何在配置文件中配置TomCat Java选项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为我正在部署的第三方应用程序配置传递到TomCat的 Java选项.该应用提供的说明如下:
  1. Open the Tomcat configuration tool from the Windows menu at Start > All
    Programs > Apache Tomcat > Tomcat Configuration
    .
  2. Click Configure and select the Java tab.
  3. At the bottom of the Java Options field,enter the following:
    -Dexample.license.directory="C:\Program Files\example"
  4. Stop and restart the application server.

但是,我需要以编程方式执行此操作,因此我想知道可以设置这些选项的配置文件.使用GUI对于将应用程序部署到其他开发人员的环境是不切实际的.

(如果相关,我正在使用Tomcat 6.0 …)

如果您使用Tomcat作为Windows服务,则可以通过转到bin目录并运行来调整JVM选项:
tomcat6 //US//MYSERVICENAME ++JvmOptions=-Dexample.license.directory="C:\Program Files\example"

在执行此操作之前关闭服务,并在完成后重新启动它.

我只是为我自己的tomcat服务器做了这个,它为我处理它.

原文链接:https://www.f2er.com/windows/369386.html

猜你在找的Windows相关文章