到目前为止,我有:
sbt.sample-1.0.0.20140125-1133.ear
在我的 WebSphere Application Server 上安装并启动,- 为 SBT 属性文件添加了 URL 资源。
Social Business Toolkit Samples 应用程序运行良好,我能够连接到我的 IBM Connections 并检索一些 ActivityStream 条目。
当我第一次加载应用程序时,我注意到了这个错误:
Exception stack trace: com.ibm.websphere.naming.CannotInstantiateObjectException: A NameNotFoundException occurred on an indirect lookup on the name java:comp/env/url/ibmsbt-managedbeansxml. The name java:comp/env/url/ibmsbt-managedbeansxml maps to a JNDI name in deployment descriptor bindings for the application performing the JNDI lookup. Make sure that the JNDI name mapping in the deployment descriptor binding is correct. If the JNDI name mapping is correct, make sure the target resource can be resolved with the specified name relative to the default initial context.
在 Samples 应用程序的ibm-web-bnd.xml
文件中,我找到了这一行:
<resource-ref name="url/ibmsbt-managedbeansxml" binding-name="url/ibmsbt-managedbeansxml" />
并且在web.xml
:
<resource-ref>
<description>Reference to a URL resource which points to the managed bean configuration for the Social Business Toolkit.</description>
<res-ref-name>url/ibmsbt-managedbeansxml</res-ref-name>
<res-type>java.net.URL</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
我想知道,为什么首先应该有一个指向 JSF 应用程序配置资源文件 ( managed-beans.xml
) 的 URL 资源?根据 Java EE 文档,JavaServer Faces 实现将在/WEB-INF/
文件夹中查找它。
SBT 是否在某处使用 JavaServer Faces 技术?或者我可以选择不在managed-beans.xml
我自己的使用 SBT 的应用程序中使用该文件吗?