本文介绍了如何在GlassFish 2.1中设置env变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Glassfish 2.1版中部署一个目前部署在Tomcat中的应用程序。



在Tomcat server.xml中,我有一个在应用程序使用的server.xml中定义的env变量

 < Environment name =CTClassFoldertype =java.lang.Stringvalue =C:\TMP/> 

如何在Glassfish 2.1中设置这个变量。我知道在版本3中有一个 asenv.conf 文件,但我没有在2.1中找到任何类似的文件。 解决方案启动服务器,登录管理控制台,导航到JVM选项,并添加-D参数,然后重新启动。


I want to deploy an application, that is currently deployed in Tomcat, in Glassfish version 2.1.

In the Tomcat server.xml I have an env variable defined in the server.xml that is used by the application

  <Environment name="CTClassFolder" type="java.lang.String" value="C:\TMP" />

How do I set this variable in Glassfish 2.1. I know there is an asenv.conf file in version 3, but I dont find anything like that in 2.1.

解决方案

Bring up the server, log into the admin console, navigate to the JVM options, and add a -D paramater, then restart.

这篇关于如何在GlassFish 2.1中设置env变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 12:44