访问 Websphere 6.1 变量
我想从 java 类获取 Websphere 变量 APP_INSTALL_ROOT 的值。这怎么办呢。
I would like to get the value of the Websphere variable APP_INSTALL_ROOT from a java class. How can this be done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个网站:
http://www.略高的比平均曼.com/2007/04/02/access-websphere-variables-in-j2ee-applications/
Try this site:
http://www.slightlytallerthanaverageman.com/2007/04/02/access-websphere-variables-in-j2ee-applications/
来自 IBM 信息中心:
From IBM infocenter:
在应用程序中获取 Websphere 变量值的另一种方法是在 WAS 控制台中定义一个指向您的 Websphere 变量的常规环境变量:
服务器->您的服务器 -> Java与进程管理->过程
定义-> Java虚拟机->自定义属性
现在通过 System.getProperty("someVariable") 访问该变量
Another way to get the value of a Websphere variable in your app is to define a regular environment variable in the WAS console pointing to your Websphere variable:
servers -> YOUR_SERVER -> Java and process management -> Process
definition -> Java virtual machine -> Custmo properties
Now access the variable as System.getProperty("someVariable")
抱歉,我无法写评论。
创建变量后必须重新启动服务器。
Sorry, i can't write a comment.
You have to restart the server after your variables creation.