如何在JSF复合组件中强制执行cc:属性的类型?

时间:2018-04-28 18:53:57

标签: jsf jsf-2.2

我似乎没有找到任何影响type属性对JSF 2.2复合组件中cc:attribute的影响的明确参考。我想确保传递的EL表达式的类型与type匹配,否则抛出异常。 Afaik type的规范应该这样做,因为否则我认为不具备该属性,但我知道在JSF中有一些(在第一方面)奇数转换,例如在null""之间,因此可能不会抛出异常。

如果没有抛出异常,那么在运行时(如果可能的话,在构建时)抛出异常的最优雅方法是什么?

JSF2: limiting cc:attribute to a given object type within a List解释了检查列表的泛型类型的问题,但是对于这种情况,解决方案(用attributeValue.class.name检查类型看起来相当hacky)不一定是必要的在那里,我想检查/断言原始类型。

我也对JSF 2.3的解决方案感兴趣。

1 个答案:

答案 0 :(得分:0)

显然,Primefaces 5.0和6.2在以下情况下检查类型:

复合组件:

<?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:cc="http://xmlns.jcp.org/jsf/composite">
    <cc:interface>
        <cc:attribute name="theValue"
                type="java.util.List"
                required="true"/>
    </cc:interface>
    <cc:implementation>
        #{cc.attrs.theValue.add("abc")}
    </cc:implementation>
</html>

支持bean:

@Named
@ViewScoped
public class BackingBean0 implements Serializable {
    private Set<String> property0 = new HashSet<>();

    public Set<String> getProperty0() {
        return property0;
    }

    public void setProperty0(Set<String> property0) {
        this.property0 = property0;
    }
}

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://xmlns.jcp.org/jsf/html"
      xmlns:typesafety="http://xmlns.jcp.org/jsf/composite/typesafety">
    <h:head>
        <title>Facelet Title</title>
    </h:head>
    <h:body>
        <typesafety:comp theValue="#{backingBean0.property0}"/>
    </h:body>
</html>

如果我再次遇到这种情况,我会编辑这个问题,这让我怀疑是否有支票。