1

spring-mvc Web アプリケーションに sitemesh を含めようとしています。これをweb.xmlに追加しました:

<filter>
<filter-name>sitemesh</filter-name>
<filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class>
</filter>

<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

私の decorators.xml ファイル:

<decorators defaultdir="/WEB-INF/decorators">
    <decorator name="master" page="master.jsp">
        <pattern>/</pattern>
    </decorator>
</decorators>

そして master.jsp ファイル:

<%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>
        :: LiVis :: <decorator:title /> ::
    </title>
    <style type="text/css">@import "resources/css/generalStyle.css";</style>
    </head>
    <body>
        <div id="wrapper">
            <div id="header">
                <div id="headerPicture">
                    <img id="livis" src="resources/images/village.png" alt="livis" />
                </div>
                <div id="headerMenu">
                    <ul id="navigation">
                        <li><a href="admin/insertEntryForm.html">Insert</a></li>
                        <li>Table-View</li>
                        <li>Graph-View</li>
                        <li>About</li>
                    </ul>
                </div>
            </div>
            <div id="main">
                <decorator:body />
            </div>
        </div>
    </body>
</html>

master.jsp は webapp のすべてのページに適用されると思いましたが、index.jsp でのみ実行されます。WEB-INF/views 内のいくつかのフォルダーにある他の jsp ファイル (図を参照) に対しては実行されません。 WEB-INF のフォルダー構造

この理由は何でしょうか?ありがとうございました!!

編集

vwies/admin-folder 内のページ:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>Registration Page</title>
</head>
<body>

<form:form method="POST" action="/LiteratureVisualization/admin/insertTest" modelAttribute="object">
    <table>
        <tr>
            <td>First name:</td>
            <td><form:input path="author.firstname" /></td>
        </tr>
        <tr>
            <td>Last name:</td>
            <td><form:input path="author.lastname" /></td>
        </tr>
        <tr>
            <td>Title:</td>
            <td><form:input path="publication.title" /></td>
        </tr>
        <tr>
            <td>Subtitle:</td>
            <td><form:input path="publication.subtitle" /></td>
        </tr>
        <tr>
            <td>Abstract:</td>
            <td><form:input path="publication.abstr" /></td>
        </tr>
        <tr>
            <td>Year of Launch:</td>
            <td><form:input path="publication.launchYear" /></td>
        </tr>
        <tr>
            <td>Month of Launch:</td>
            <td><form:input path="publication.launchMonth" /></td>
        </tr>
        <tr>
            <td>Volume:</td>
            <td><form:input path="publication.volume" /></td>
        </tr>
        <tr>
            <td>Number:</td>
            <td><form:input path="publication.number" /></td>
        </tr>
        <tr>
            <td>Sort of:</td>
            <td><form:input path="publication.sortOf" /></td>
        </tr>
        <tr>
            <td>Published In:</td>
            <td><form:input path="publication.publishedIn" /></td>
        </tr>
        <tr>
            <td colspan="2"><input type="submit" value="Register"></td>
        </tr>
    </table>
</form:form>
</body>
</html>
4

1 に答える 1

0

パターン宣言では、/の代わりに/*を使用してください。

または、問題が解決しない場合は、jspファイルを調べて、htmlタグとbodyタグが含まれていることを確認してください。そうでない場合、sitemeshはタグをデコレータで宣言されたタグに置き換えることはできません。

于 2013-01-07T10:10:30.180 に答える