Struts2 + Sitemesh + Freemarker 不起作用

Posted

技术标签:

【中文标题】Struts2 + Sitemesh + Freemarker 不起作用【英文标题】:Struts2 + Sitemesh + Freemarker doesn't work 【发布时间】:2011-01-26 02:50:43 【问题描述】:

我已经尝试了所有我能找到的示例,但我无法让 struts2 + sitemesh + freemarker 在一个简单的 jsp 上工作。

我有一个非常简单的 web.xml,一个只转到 index.jsp 的单个操作,以及一个简单的 .ftl 装饰器,它只在结果中添加一些文本。

当我点击index.action 时,页面“似乎”被装饰了,但我得到的是文字$body 而不是实际内容。

这是我的设置:

web.xml

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
         http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">

    <description>struts2 test</description>
    <display-name>struts 2 test</display-name>

    <filter>
        <filter-name>struts-prepare</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareFilter</filter-class>
    </filter>

    <filter>
        <filter-name>sitemesh</filter-name>
        <filter-class>org.apache.struts2.sitemesh.FreeMarkerPageFilter</filter-class>
    </filter>

    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsExecuteFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>struts-prepare</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

    <filter-mapping>
        <filter-name>sitemesh</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

    <welcome-file-list>
        <welcome-file>index.action</welcome-file>
    </welcome-file-list>

</web-app>

struts.xml

<struts>
    <constant name="struts.devMode" value="true"/>
    <package name="basicstruts2" extends="struts-default">
        <action name="index">
            <result>/index.jsp</result>
        </action>
    </package>
</struts>

sitemesh.xml

<sitemesh>
    <property name="decorators-file" value="/WEB-INF/decorators.xml" />
    <excludes file="$decorators-file" />

    <page-parsers>
        <parser default="true" class="com.opensymphony.module.sitemesh.parser.DefaultPageParser"/>
        <parser content-type="text/html" class="com.opensymphony.module.sitemesh.parser.HTMLPageParser"/>
    </page-parsers>

    <decorator-mappers>

        <mapper class="com.opensymphony.module.sitemesh.mapper.ConfigDecoratorMapper">
            <param name="config" value="$decorators-file" />
        </mapper>
    </decorator-mappers>
</sitemesh>

decorators.xml

<decorators defaultdir="/decorators">
    <decorator name="main" page="main.ftl">
          <pattern>/*</pattern>
    </decorator>
</decorators>

main.ftl

<html>
<head>
<title>$title</title>
$head
</head>
<body>
I'm Fancy!<br>
    $body<br />
</body>
</html>

index.jsp

<html>
<head>
    <title>my title</title>
    </head>
<body>
my body
</body>
</html>

有什么想法吗???

【问题讨论】:

【参考方案1】:

有关工作文档,请参阅 http://struts.apache.org/2.x/docs/sitemesh-plugin.html。您可能需要添加:

<servlet-mapping>
     <servlet-name>sitemesh-freemarker</servlet-name>
     <url-pattern>*.ftl</url-pattern>
</servlet-mapping>

致您的web.xml

并将 index.jsp 重命名为 index.ftl。顺便说一句,如果您要使用sitemesh + freemarker,我通常更喜欢装饰器的*.dec 和freemarker 模板的*.ftl 约定。

【讨论】:

以上是关于Struts2 + Sitemesh + Freemarker 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

struts2工作流程

Sitemesh或瓷砖[关闭]

“未修改”标头后跟带有 sitemesh3 和 mod-jk 的意外内容正文

Struts2工作流程

Struts2工作流程

Struts2相关问题