我有一个项目,我将Magnolia cms与Spring mvc集成在一起。 spring servlet作为magnolia中的模块加载,并赋予模式/web/*
。 servlet在模块描述符中定义,因此web.xml文件中没有servlet定义,只有在那里定义了magnolia过滤器链。
我遇到的问题是当我尝试以下代码时
<jsp:include path="/web/header" />
例如,在玉兰花页面模板中,我收到错误消息,表示无法找到该文件,并在/src/main/webapp/web/header
中搜索该文件。
但是如果我在web.xml中声明spring servlet没有错误,那就可以了。
有人可以告诉我为什么会这样吗?为什么<jsp:include>
只能查看玉兰花过滤器链并发现spring servlet映射该请求并返回所请求的页面?
谢谢:)
这是我的web.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.xsd">
<filter>
<display-name>Magnolia global filters</display-name>
<filter-name>magnoliaFilterChain</filter-name>
<filter-class>info.magnolia.cms.filters.MgnlMainFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>magnoliaFilterChain</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
<context-param>
<param-name>magnolia.initialization.file</param-name>
<param-value>
WEB-INF/config/${servername}/${webapp}/magnolia.properties, WEB-INF/config/${servername}/magnolia.properties,
WEB-INF/config/${webapp}/magnolia.properties, WEB-INF/config/default/magnolia.properties,
WEB-INF/config/magnolia.properties
</param-value>
</context-param>
<listener>
<listener-class>info.magnolia.module.blossom.support.ServletContextExposingContextListener</listener-class>
</listener>
<listener>
<listener-class>info.magnolia.cms.servlets.MgnlServletContextListener</listener-class>
</listener>
</web-app>
这是我在开花模块描述符中定义spring servlet的方法:
<servlets>
<servlet>
<name>Spring Servlet</name>
<class>info.magnolia.module.blossom.web.InstallationAwareDispatcherServlet</class>
<comment>Used for spring as dispatcher servlet</comment>
<mappings>
<mapping>/web/*</mapping>
</mappings>
<params>
<param>
<name>contextConfigLocation</name>
<value>/WEB-INF/spring/appServlet/servlet-context.xml</value>
</param>
</params>
</servlet>
</servlets>
这是我用于玉兰花页面主页的主要模板:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>${content.title}</title>
</head>
<body>
<jsp:include page="/web/header" />
</body>
</html>
页面header.jsp位于webapps/WEB-INF/views/
下。
它在包含旁边的eclipse中显示的错误是:
在预期路径中找不到片段“/ web / header” / PROJECT_NAME / SRC /主/ web应用/网页/报头
它在浏览器中出现的错误是:
HTTP状态404 - / project_name / web / header
问题是,如果我将以下代码放在web.xml中,它可以工作:
<servlet>
<servlet-name>Spring Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Spring Servlet</servlet-name>
<url-pattern>/web/*</url-pattern>
</servlet-mapping>
我希望这会有所帮助..非常感谢你:)。
答案 0 :(得分:1)
Magnolia过滤器链中的大多数过滤器默认不处理包含。在你的情况下,让servlet接受包含是有意义的。您可以通过更改/ server / filters / servlets / [您的servlet]中的servlet上的调度规则来启用此功能。
将/ server / filters / dispatching复制到/ server / filters / servlets / [你的servlet],并将dispatching / include / toMagnoliaResource设置为true。
Magnolia将请求分类为定位木兰资源或Web容器资源,并且过滤器以不同方式处理它们。它们如何被分类的配置在/ server / webContainerResources中,所有与规则不匹配的东西都有玉兰资源。