条纹中的嵌套布局问题

时间:2011-06-24 07:06:56

标签: java java-ee stripes

我遇到条纹布局的一些问题。我将在这里给出一个测试用例:

主要布局(main.jsp):

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<%@include file="/WEB-INF/jsp/common/taglibs.jsp" %>

<s:layout-definition>    

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>{$title}</title>
</head>
<body>
    <s:layout-component name="body"/>
</body>
</html>

</s:layout-definition>

扩展main(sub_main.jsp)的子布局:

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<%@include file="/WEB-INF/jsp/common/taglibs.jsp" %>

<s:layout-definition>
    <s:layout-render name="/WEB-INF/jsp/common/main.jsp" title="${title}">
        <s:layout-component name="body">
            This is a test and this is from sub main
            <div style="color: red; font-size: 5em;">
                <s:layout-component name="subheader"/>
            </div>
            ${body}     
        </s:layout-component>
    </s:layout-render>
</s:layout-definition>    

现在我在以下代码(test.jsp)中使用子主布局:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<%@include file="/WEB-INF/jsp/common/taglibs.jsp" %>

<s:layout-render name="/WEB-INF/jsp/common/sub_main.jsp" title="Test Page">
    <s:layout-component name="subheader">
        This is from the sub header component
    </s:layout-component>
    <s:layout-component name="body">
        This is from body
    </s:layout-component>
</s:layout-render>

但在浏览器中我看到以下内容:

  

这是一个测试,这是来自副主要的   这是来自身体

而不是:

  

这是一个测试,这是来自副主要的   这是来自子标题组件
  这是来自身体

首先,标题显示为:

  

“$标题”。

请任何人都能给我一些关于我做错事的线索吗?

1 个答案:

答案 0 :(得分:1)

我注意到 subheader 是在 sub_main.jsp defenition的 body 组件中定义的,我认为你不能嵌套这样的组件标签。您可能希望尝试使用EL表达式代替子标题(使用:$ {subheader})。

最好在渲染布局组件的内容时始终使用EL表达式而不是布局组件标记,并且仅使用布局组件来定义布局。嵌套在布局定义中时,不能使用布局组件进行渲染(布局组件的这种双重用法是库的设计错误,在我看来会导致不必要的混淆)。

另请参阅官方Stripes文档的Nested Layouts部分。