1

服务器未在带有 WAS7 的 Eclipse Gallileo IDE 中启动。
我从 Eclipse 外部运行服务器,但我想从 Eclipse 内部启动它
下面是我的工作区配置的详细信息:
面向 Web 开发人员的 Eclipse Java EE IDE。
是 7.0

出现警告说“无法连接到关闭的 VM 套接字”。
我在控制台中遇到以下异常:

JVMSHRC154E Escape character g not valid for cache name
<JIT: FullSpeedDebug: ignoring countString>
<JIT: FullSpeedDebug: ignoring countString>
JVMJ9VM015W Initialization error for library j9shr24(13): JVMJ9VM009E J9VMDllMain failed
4

3 回答 3

0

IBM 已经发布了WebSphere Application Server (WAS). 您可以从 eclipse 市场下载它。有适用于 WAS7 及更高版本的工具。(IBM 信息页面)

您可能需要WAS 7 Tools-marketplace页面

简短说明是:在 eclipse 中单击Help->Eclipse Market Place->Search WebSphere Application Server Tools

于 2015-04-24T18:59:06.650 回答
0

根据JVMSHRC154E,似乎正在以某种方式-Xshareclasses:name=...%g...将其添加到您的服务器 JVM 命令行中。我不知道为什么 Eclipse 和命令行之间会有差异(可能是应该向 IBM 报告的产品问题),但您可以尝试通过添加-Xshareclasses:nonfatal到服务器的通用 JVM 参数来解决该问题。

于 2013-05-28T14:18:04.383 回答
0
  1. 在 Eclipse 安装文件夹中转到 \plugins.....\cdcla\eclipse\launch\simple。
  2. 打开文件 websphere70.properties。
  3. 您将看到以下内容并删除

“_%G”

部分并保存

shareclasses=webspherev70_%g,groupAccess,nonfatal
于 2015-12-21T08:38:21.523 回答