未找到JSF 2.1.13自定义组件:标记库支持名称空间:<namsepace>但没有为名称定义标记:<compositecomponent>

pgr*_*en2 6 java composite-component jsf-2 mojarra

问题

我正在使用JSF 2.1.13创建一个原型来证明JSF的优势,而不是我们当前使用JSP和构建的webapp struts 1.1.我使用的是代码JSF 2.2.6,但是当我发现Oracle Weblogic 12c还不支持JSF 2.2 时,我不得不降级.使用2.1.13运行代码时收到以下错误:

/pages/sites/tab-details.xhtml @27,90 <ccc:codedType> Tag Library supports namespace: http://java.sun.com/jsf/composite/ccc, but no tag was defined for name: codedType
Run Code Online (Sandbox Code Playgroud)

谷歌搜索只指向我有关嵌套复合组件错误,但这不是我正在做的事情.

摘录自 pom.xml

<!-- JSF Dependencies -->
<dependency>
  <groupId>com.sun.faces</groupId>
  <artifactId>jsf-api</artifactId>
  <version>2.1.13</version>
</dependency>
<dependency>
  <groupId>com.sun.faces</groupId>
  <artifactId>jsf-impl</artifactId>
  <version>2.1.13</version>
</dependency>
Run Code Online (Sandbox Code Playgroud)

复合组件: webapp/WEB-INF/resources/ccc/codedType.xhtml

<?xml version="1.0" encoding="UTF-8"?>
<ui:component xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:cc="http://java.sun.com/jsf/composite">
  <cc:interface shortDescription="Renders a CodedType">
    <cc:attribute name="value" required="true"
      shortDescription="Instance of CodedType to be properly rendered"
      type="company.prototype.uireplacement.presenter.CodedType" />
    <cc:attribute name="includeCode"
      shortDescription="Whether or not the rendeder type should include the code"
      type="boolean" default="false"/>
  </cc:interface>

  <cc:implementation>
    <span id="#{cc.attrs.id}">#{cc.attrs.value.label}<ui:fragment rendered="#{cc.attrs.includeCode}"> (#{cc.attrs.value.code})</ui:fragment></span>
  </cc:implementation>
</ui:component>
Run Code Online (Sandbox Code Playgroud)

使用复合组件的页面: webapp/pages/sites/tab-details.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:p="http://primefaces.org/ui"
  xmlns:ccc="http://java.sun.com/jsf/composite/ccc">

      <ccc:codedType value="#{siteControllerBean.selectedSite.type}" includeCode="true"/>
</ui:composition>
Run Code Online (Sandbox Code Playgroud)

pgr*_*en2 11

经过多次挖掘后,我发现了导致我错误的原因.注意我的组件的位置:webapp/WEB-INF/resources/ccc/codedType.xhtml.适当的位置应该是webapp/resources/ccc/codedType.xhtml(root vs WEB-INF).在JSF 2.2中,他们允许位置可配置,我在以下内容中有以下内容web.xml:

<context-param>
  <param-name>javax.faces.WEBAPP_RESOURCES_DIRECTORY</param-name>
  <param-value>/WEB-INF/resources</param-value>
</context-param>
Run Code Online (Sandbox Code Playgroud)

这就是为什么事情在JSF 2.2中有效.

我的情况的修复是删除,javax.faces.WEBAPP_RESOURCES_DIRECTORY因为它没有在JSF 2.1中使用并将资源移动到根.