5

カスタムJSFコアFaceletコンポーネントを作成することは可能ですか?のようなもの<custom:composition><ui:composition>または<custom:include>のため<ui:include> に誰かが私に関係するステップを教えてくれるならそれは役に立ちます。

前もって感謝します、

カウシャル

4

1 に答える 1

17

それは本質的にタグハンドラーです。つまり、から拡張するクラスTagHandler

これがHelloWorldタグハンドラーです。

com.example.HelloTagHandler

public class HelloTagHandler extends TagHandler {

    public HelloTagHandler(TagConfig config) {
        super(config);
    }

    @Override
    public void apply(FaceletContext context, UIComponent parent) throws IOException {
        // Do your job here. This example dynamically adds another component to the parent.
        if (ComponentHandler.isNew(parent)) {
            UIOutput child = new HtmlOutputText();
            child.setValue("Hello World");
            parent.getChildren().add(child);
        }

        nextHandler.apply(context, parent); // Delegate job further to first next tag in tree hierarchy.
    }

}

/WEB-INF/my.taglib.xml

<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd"
    version="2.0"
>
    <namespace>http://example.com/my</namespace>
    <tag>
        <tag-name>hello</tag-name>
        <handler-class>com.example.HelloTagHandler</handler-class>
    </tag>
</facelet-taglib>

/WEB-INF/web.xml(注: JSFコンポーネントライブラリのように、が内部のJARファイルのフォルダにあるmy.taglib.xml場合、この部分は必須ではありません):/META-INF/WEB-INF/lib

<context-param>
    <param-name>javax.faces.FACELETS_LIBRARIES</param-name>
    <param-value>/WEB-INF/my.taglib.xml</param-value>
</context-param>

での使用法/some.xhtml

<html ... xmlns:my="http://example.com/my">
...
<my:hello />

<ui:composition>およびのMojarra実装のソースコードを表示するには<ui:include>、リンクをクリックしてください。

参照:

于 2013-02-21T16:45:10.503 に答える