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

时间:2014-07-17 22:16:27

标签: java jsf-2 composite-component mojarra

问题

我正在使用JSF 2.1.13创建原型来展示JSF对我们当前使用JSPstruts 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

谷歌搜索只指向bug about nested composite components,但这不是我正在做的事情。

代码

摘自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>

复合组件: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>

使用复合组件的页面: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>

2 个答案:

答案 0 :(得分: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>

这就是JSF 2.2中的工作原理。

我的情况的解决方法是删除javax.faces.WEBAPP_RESOURCES_DIRECTORY,因为它没有在JSF 2.1中使用并将资源移动到根目录。

答案 1 :(得分:-1)

我最近遇到了这个错误: 确保将模板放在src ../ META-INF / resources / myFolder位置 并使用xmlns引用它:tp =&#34; http://java.sun.com/jsf/composite/myFolder"&gt; 这有助于我解决这个问题。