繁体   English   中英

NETBEANS 7.4:“未为名称定义任何标记:注册” +“未为命名空间http://java.sun.com/jsf/composite/my_composite_component找到库”

[英]NETBEANS 7.4: “no tag was defined for name: register” + “No library found for namespace http://java.sun.com/jsf/composite/my_composite_component”

我在Linux Mint 13 Maya上使用Netbeans 7.4。 我学习了如何编写一个简单的JSF复合组件。 但是我有一些错误:

当我尝试启动我的应用程序时:

<my_composite_component:register> Tag Library supports namespace: http://java.sun.com/jsf/composite/my_composite_component, but no tag was defined for name: register

当我尝试使用我的组件时:

“No library found for namespace http://java.sun.com/jsf/composite/my_composite_component”

这是我的Netbeans项目中目录的结构:

在此处输入图片说明

和代码:

register.xhtml-我的复合组件

<?xml version="1.0" encoding="UTF-8"?>
<!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:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:composite="http://java.sun.com/jsf/composite"
      >

    <composite:interface>

        <composite:attribute name="nameLable" />
        <composite:attribute name="nameValue" />
        <composite:attribute name="emailLable" />
        <composite:attribute name="emailValue" />

        <composite:attribute name="registerButtonText" />
        <composite:attribute name="registerButtonAction" 
                             method-signature="java.lang.String action()" />

    </composite:interface>

    <composite:implementation>

        <h:form>

            <h:message for="textPanel" style="color:red;" />

            <h:panelGrid columns="2" id="textPanel">

                #{cc.attrs.nameLable} : 
                <h:inputText id="name" value="#{cc.attrs.nameValue}" />

                #{cc.attrs.emailLable} : 
                <h:inputText id="email" value="#{cc.attrs.emailValue}" />

            </h:panelGrid>

            <h:commandButton action="#{cc.attrs.registerButtonAction}" 
                             value="#{cc.attrs.registerButtonText}"
                             />

        </h:form>

    </composite:implementation>

</html>

index.xhtml ,我尝试在其中使用组件:

<?xml version="1.0" encoding="UTF-8"?>
<!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:h="http://java.sun.com/jsf/html"
      xmlns:my_composite_component="http://java.sun.com/jsf/composite/my_composite_component"
      >

    <h:body>

        <h1>Composite Components in JSF 2.0</h1>

    <my_composite_component:register 
        nameLable="Name" 
        nameValue="#{user.name}" 
        emailLable="E-mail" 
        emailValue="#{user.email}"

        registerButtonText="Register" 
        registerButtonAction="#{user.registerAction}"
     />

    </h:body>

</html>

我使用的是jsf 2.2,而不是java.sun.com/jsf,我将其用作命名空间:

xmlns:my_composite_component="http://xmlns.jcp.org/jsf/composite/my_composite_component

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM