我在我们的应用程序中遇到了以下问题:每次服务器重新启动或重新部署应用程序后,第一次尝试导航到一个特定页面将失败并出现异常:
javax.faces.view.facelets.TagException: /testing/target.xhtml @8,72 <ofc:testComp> Tag Library supports namespace: http://java.sun.com/jsf/composite/of-components, but no tag was defined for name: testComp
我花了一段时间将其精简为最小版本。在这样做时,我想出了以下几点:
在以下情况下会出现问题:
- 服务器已重新启动或应用程序已重新部署
- 尝试通过
h:commandLink
- 目标页面使用复合组件
问题在以下情况下消失:
- 以其他方式到达目标页面,例如
h:outputLink
通过 URL 或通过 URL - 每次成功到达目标页面后
我排除了各种事情(我们在 Mojarra 2.1.7 上,目标页面没有嵌套组件,所以嵌套命名空间声明不是这个问题)并将其缩小到以下“罪魁祸首”:
源页面使用了一个模板,我将其简化如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Testpage</title>
</h:head>
<h:body>
<h:form id="form">
<ui:insert name="content"/>
<ui:include src="some_other_content.xhtml" />
</h:form>
</h:body>
</html>
如果我删除ui:include
一切正常。有人可以向我解释这里发生了什么吗?它似乎与在服务器重新启动后初始化我的组件库有关,但我不明白模板中的包含与它有什么关系。据我所知,这是在页面中包含一些固定内容的标准方式?如果这不是应该这样做的,请让我知道还有其他方法。
谢谢!
为了完整性而保留的代码片段(这里没有魔法):
source_page.xhtml
<ui:composition template="/testing/test_template.xhtml">
<ui:define name="content">
<h:outputLink value="target.xhtml">Outputlink to target</h:outputLink> <br />
<h:commandLink value="Commandlink to target" action="target.xhtml" />
</ui:define>
</ui:composition>
目标.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ofc="http://java.sun.com/jsf/composite/of-components"
xmlns:h="http://java.sun.com/jsf/html">
<h:head></h:head>
<h:body>
<ofc:testComp content="This is a component for testing purposes" />
</h:body>
</html>
testComp.xhtml
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:cc="http://java.sun.com/jsf/composite">
<cc:interface>
<cc:attribute name="content" required="true" />
</cc:interface>
<cc:implementation>
<h:outputText value="#{cc.attrs.content}" />
</cc:implementation>
</html>
最后,some_other_content.xhtml只是一个随机的 Hello-World-Page。