在Hybris中解释JSP中的动态属性

时间:2018-09-09 02:53:57

标签: java spring jsp sap hybris

我创建了一个动态属性来处理导航节点条目的可见性,并与Hybris的所有相关规则兼容。我可以毫无问题地访问Java代码中的属性,但无法让JSP对其进行解释。 我的DynamicAttributeHandler类正常运行,但是JSP在读取它时失败。 这些是创建属性的步骤:

1)items.xml

<attribute qualifier="navigationNodeVisibility" type="java.lang.Boolean">
       <persistence type="dynamic" attributeHandler="navigationNodeVisibilityAttributeHandler"/>
       <modifiers read="true" write="false" search="true"/>
       <defaultvalue>java.lang.Boolean.TRUE</defaultvalue>
</attribute>

2)NavigationNodeVisibilityAttributeHandler.java

@Override
public Boolean get(CMSNavigationNodeModel model) {
    if (model != null) {
        for(CMSNavigationEntryModel cmsNavigationEntry:model.getEntries()){
            if(cmsNavigationEntry.getItem() instanceof  CMSLinkComponentModel){
                CategoryModel category= ((CMSLinkComponentModel)cmsNavigationEntry.getItem()).getCategory();
                if((category.getVisibility()== null || category.getVisibility() ) && ActiveProductStatus.ACTIVE == category.getActiveProductStatus()
                        && ManageCategoryByDateStatus.ACTIVE == category.getManageCategoryByDateStatus()){
                    return Boolean.TRUE;
                }
            }
        }
        return Boolean.FALSE;
    }
    return null;
}

3)注册bean

<bean id="navigationNodeVisibilityAttributeHandler" class="com.inomera.hybris.core.handler.NavigationNodeVisibilityAttributeHandler" />

4)蚂蚁清理所有&&蚂蚁更新系统

每当我在jsp文件中调用它时,都会出现类似“ ..处理JSP页面时发生异常..”的错误

<c:forEach items="${component.navigationNode.children}" var="cx">
    ${cx.navigationNodeVisibility}
</c:forEach>

以这种方式调用属性不会引发异常,但是对于我而言,有必要在for循环中使用它。

${component.navigationNode.children[0].navigationNodeVisibility}

任何帮助或建议将不胜感激

注意:${cx.getNavigationNodeVisibility()}确实引发了相同的JSP异常。

编辑:JSP异常示例

WARN  [hybrisHTTP14] [XXXXXXXXXXXX] [DefaultCMSComponentRendererRegistry] Error processing component tag. currentComponent [CategoryNavigationComponentModel (8796098036796@1)] exception: An exception occurred processing JSP page /WEB-INF/views/responsive/cms/categorynavigationcomponent.jsp at line 14

11: <nav id="menu" style="display: none;">
12:         <ul>
13:             <c:forEach items="${component.navigationNode.children}" var="childLevel1">
14:                 <c:if test="${ childLevel1.visible eq 'true' && childLevel1.navigationNodeVisibility}">
15:                     <li>
16:                         <c:forEach items="${childLevel1.entries}" var="childEntry1" end="1">
17:                             <c:if test="${not empty childLevel1.children}">

1 个答案:

答案 0 :(得分:1)

您是否检查过category在属性处理程序中是否不为空?

我假设您的前端只允许使用Online目录版本,并且如果您使用暂存目录中的类别,您将获得一个空值。也许有人忘了先添加类别。