⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resourceservlet.java

📁 spring的源代码
💻 JAVA
字号:
/*
 * Copyright 2002-2004 the original author or authors.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */ 

package org.springframework.web.servlet;

import java.io.IOException;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Simple servlet that can expose an internal resource, including a 
 * default URL if the specified resource is not found. An alternative,
 * for example, to trying and catching exceptions when using JSP include.
 *
 * <p>A typical usage would map all URLs with a .res extension onto an
 * instanceof this servlet, and use the JSP include action to include
 * with the resource parameter (specificed in a jsp:param sub-action)
 * indicating the actual path in the WAR.
 *
 * <p>The defaultUrl bean property must be set to the
 * internal path of the default (placeholder) URL.
 *
 * @author Rod Johnson
 */
public class ResourceServlet extends HttpServletBean {
	
	/**
	 * Name of the parameter that must contain the actual resource path.
	 */
	public static final String RESOURCE_PARAM = "resource";
	
	/**
	 * URL within the current web application from which to include
	 * content if the requested path isn't found.
	 */
	private String defaultUrl;

	public void setDefaultUrl(String defaultUrl) {
		this.defaultUrl = defaultUrl;
	}

	public String getDefaultUrl() {
		return defaultUrl;
	}

	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		String resource = request.getParameter(RESOURCE_PARAM);
		if (resource == null) {
			throw new ServletException("Path is required");
		}
		try {
			RequestDispatcher rd = request.getRequestDispatcher(resource);
			rd.include(request, response);
			logger.debug("Included content of resource [" + resource + "]");
		}
		catch (Exception ex) {
			RequestDispatcher rd = request.getRequestDispatcher(this.defaultUrl);
			rd.include(request, response);
			logger.warn("Failed to include content of resource [" + resource + "]");
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -