我正在尝试使用 Eclipse Mars 配置 Websphere Liberty Profile 8.5.5.7 ,但是当我启动它时,我收到以下错误:
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.javaee.el.2.2/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.javaee.jsp.2.2/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.org.apache.jasper.el.2.2/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.org.eclipse.jdt.core.3.10.0.v20140902-0626/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.jsp.factories.2.2/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.javaee.jstl.1.2/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.jsp-2.2org.apache.jasper/[1.0.0,1.0.100).
[ERROR ] CWWKF0002E: A bundle could not be found for com.ibm.ws.jsp/[1.0.0,1.0.100).
我的server.xml
文件:
<server description="new server">
<!-- Enable features -->
<featureManager>
<feature>jsp-2.2</feature>
<feature>ssl-1.0</feature>
<feature>localConnector-1.0</feature>
</featureManager>
<keyStore id="defaultKeyStore" password="{xor}12345"/>
<httpEndpoint id="defaultHttpEndpoint"
host="localhost"
httpPort="9080"
httpsPort="9443" />
</server>
此外,我尝试安装可选功能 jaxrs-2.0 ,我已经从bin \ featureManager实用程序安装了它但是当我将其添加到server.xml
时,我收到警告{{1 }}
我可能做错了什么?
答案 0 :(得分:3)
有一些类似的报道。通常,Clean服务器重启会修复它。从工具中右键单击服务器视图中的服务器。在下次启动时单击干净服务器,然后重新启动服务器。通常,这可以解决问题。我们正在研究它。
答案 1 :(得分:2)
关于安装jaxrs-2.0功能,如果通过命令行安装,则工具不知道它。您可以通过执行以下操作来刷新工具缓存的运行时信息:
Window -> Preferences -> Server -> Runtime Environment -> SELECT YOUR RUNTIME -> CLICK Edit -> CLICK Advanced options... -> CLICK Refresh
等待时间戳更新,然后右键单击资源管理器视图中的server.xml,然后选择验证。
如果您通过工具安装功能,则缓存的信息将自动更新。要通过这些工具进行安装,请打开运行时资源管理器视图,右键单击运行时并选择安装其他内容。