0

我在我的应用程序中创建了一个自定义标签,但由于某种原因它不起作用,我按照教程(这是我发现放在这里作为参考的最清晰的教程)但是,就像我做的其他教程一样,我的自定义标签不叫。

WEB-INF/example.taglib.xml

<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib
    xmlns="http://java.sun.com/xml/ns/javaee"
    version="2.0">
    <namespace>http://example.com/facelettags</namespace>
    <tag>
        <tag-name>hello</tag-name>
        <handler-class>example.MenuTagHandler</handler-class>
    </tag>
</facelet-taglib>

我的标签处理程序类

package example;

public class MenuTagHandler extends TagHandler {

    private String name = "Anonymous";

    public MenuTagHandler(TagConfig config) {
        //other constructor stuff
        Logger.getLogger(MenuTagHandler.class).info("aaaa");
        //other constructor stuff
    }

    @Override
    public void apply(FaceletContext context, UIComponent parent) throws IOException {
        Logger.getLogger(MenuTagHandler.class).info("aaaa");
        UIComponentBase c = new UIComponentBase() {
            @Override
            public void encodeEnd(FacesContext ctx) throws IOException {
                ResponseWriter w = ctx.getResponseWriter();
                w.write(String.format(
                        "<p>Hello %s! I am FaceletTag.</p>",
                        name));
            }

            // abstract method in base, must override
            @Override
            public String getFamily() {
                return "com.example.facelettag.test";
            }
        };
        parent.getChildren().add(c);
    }
}

我的 .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">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:exampler="http://example.com/facelettags" >
        <example:hello />
</ui:composition>

渲染的结果是

<example:hello></example:hello>

不幸的是,日志中没有打印任何内容,有人知道它为什么不调用标签处理程序吗?

4

1 回答 1

0

如果*.taglib.xml文件不在放置的/META-INFJAR 文件中/WEB-INF/lib,因此不会被自动检测和注册(就像所有那些 3rd 方 JSF 组件库,如 PrimeFaces、RichFaces 等),那么你会需要在webapp的手动注册web.xml如下:

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

与具体问题无关,请注意,您到目前为止不是自定义组件。这是一个自定义标记处理程序,它反过来创建一个匿名的UIComponentBase. 这不一定是“最佳”做法。如果您在视图构建期间不需要执行与组件树相关的任何操作,那么您根本不需要 taghandler 部分。只需创建一个完全有价值的@FacesComponent课程。

也可以看看:

于 2013-03-19T20:21:09.827 回答