我尝试使用Sitemesh 2.4.2使用导航栏装饰一些JSP,并将CSS引用提取到此装饰器中。但是,我无法使其工作:取决于我在decorators.xml
中设置模式的方式,我要么只获取没有装饰器的基础JSP,要么只获取装饰器(这是, <head>
标记的内容以及<navbar>
我在<body>
标记的开头添加的内容)中没有来自基本JSP的内容。
我的应用程序使用Glassfish 4作为应用程序服务器,因此使用Jersey 2.由于我使用JSP,我使用Jersey作为过滤器。
这是我的web.xml
(我不完全确定我是否需要此FORWARD调度员)
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<filter>
<filter-name>SiteMeshFilter</filter-name>
<filter-class>com.opensymphony.sitemesh.webapp.SiteMeshFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>SiteMeshFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>
<filter>
<filter-name>jersey</filter-name>
<filter-class>org.glassfish.jersey.servlet.ServletContainer</filter-class>
<init-param>
<param-name>jersey.config.servlet.filter.forwardOn404</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.xxx.jersey2.config.CustomResourceConfig</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>jersey</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
我的decorators.xml
<?xml version="1.0" encoding="UTF-8"?>
<decorators defaultdir="/WEB-INF/decorators">
<decorator name="main" page="my_navbar.jsp">
<!--<pattern>/jsp/*</pattern>-->
<pattern>/*</pattern>
</decorator>
</decorators>
在这里,如果我将模式更改为<pattern>/jsp/*</pattern>
,那么装饰器就不会被包含在内 - 我只会得到基础JSP。
通过将模式设置为<pattern>/*</pattern>
,我只获得装饰器,这就是我只获得my_navbar.jsp
的内容。此外,它上面的Sitemesh标签,如<decorator:body />
,根本不会被渲染,它们会显示在可以从浏览器中看到的结果网页源代码中。
这是将要装饰的JSP my_navbar.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Sandbox application</title>
<link rel="stylesheet" href="../../js/jquery-1.12.4.min.js">
<link rel="stylesheet" href="../../css/bootstrap.min.css">
<link rel="stylesheet" href="../../js/bootstrap.min.js">
<decorator:head />
</head>
<body>
<nav class="navbar navbar-light bg-faded">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/sample-jersey2/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sample-jersey2/movies/list/">Movies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sample-jersey2/genres/list/">Genres</a>
</li>
</ul>
</nav>
<decorator:body />
</body>
</html>
最后,我尝试用导航栏和样式修饰的其中一个JSP
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title></title>
</head>
<body>
<h2>Listing Movies</h2>
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Starring</th>
<th>Genre</th>
</tr>
<c:forEach var="item" items="${it.movies}">
<tr>
<td>${item.name}</td>
<td>${item.starring}</td>
<td>${item.genre}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
对此的任何想法都将不胜感激 此致
答案 0 :(得分:0)
我在my_navbar.jsp
文件中遗漏了这一行:
<%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator" %>
现在它正常运作。