2

我正在 Eclipse JEE (Mars) / Websphere Liberty (8.5.5.8) / Websphere Liberty Developer Tools Plugin (8.5.5) 上配置 JCA 资源适配器。

资源适配器在服务器启动时使用以下 server.xml 配置正确安装(启用了 jca 1.7 功能):

<resourceAdapter location="<path_to_my_rar>" />

我的问题是开发人员工具中无法识别该标签(未针对架构进行验证),因此 server.xml 有错误。<connectionFactory>标签未被识别为配置元素的相同错误(在这种情况下只是一个警告) 。

有什么想法可以删除 server.xml 上的那些验证错误/警告吗?

谢谢。

4

1 回答 1

1

如果您在 WDT 之外(例如使用 installUtility)而不是从 WDT 内部安装了工具功能,您可能需要在安装时“刷新”WDT 的元数据。

您可以通过以下方式做到这一点:

刷新运行时(更新架构和功能列表):

 Window -> Show View -> Other -> Server -> Runtime Explorer
 Right click on runtime in Runtime Explorer view and select Edit
 Click on Advanced options in the dialog
 Click the Refresh button

或者:

Window -> Preferences -> Server -> Runtime Environment -> SELECT YOUR RUNTIME -> CLICK Edit -> CLICK Advanced options... -> CLICK Refresh
于 2016-06-10T15:24:26.427 回答