/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.servlet;
import com.liferay.portal.kernel.servlet.PluginContextListener;
import com.liferay.portal.kernel.util.ClassLoaderUtil;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
/**
* @author Raymond Augé
*/
public class ClassLoaderRequestDispatcherWrapper implements RequestDispatcher {
public ClassLoaderRequestDispatcherWrapper(
ServletContext servletContext, RequestDispatcher requestDispatcher) {
_servletContext = servletContext;
_requestDispatcher = requestDispatcher;
}
@Override
public void forward(
ServletRequest servletRequest, ServletResponse servletResponse)
throws IOException, ServletException {
doDispatch(servletRequest, servletResponse, false);
}
@Override
public void include(
ServletRequest servletRequest, ServletResponse servletResponse)
throws IOException, ServletException {
doDispatch(servletRequest, servletResponse, true);
}
protected void doDispatch(
ServletRequest servletRequest, ServletResponse servletResponse,
boolean include)
throws IOException, ServletException {
ClassLoader contextClassLoader =
ClassLoaderUtil.getContextClassLoader();
ClassLoader pluginClassLoader =
(ClassLoader)_servletContext.getAttribute(
PluginContextListener.PLUGIN_CLASS_LOADER);
try {
if (pluginClassLoader == null) {
ClassLoaderUtil.setContextClassLoader(
ClassLoaderUtil.getPortalClassLoader());
}
else {
ClassLoaderUtil.setContextClassLoader(pluginClassLoader);
}
if (include) {
_requestDispatcher.include(servletRequest, servletResponse);
}
else {
_requestDispatcher.forward(servletRequest, servletResponse);
}
}
finally {
ClassLoaderUtil.setContextClassLoader(contextClassLoader);
}
}
private final RequestDispatcher _requestDispatcher;
private final ServletContext _servletContext;
}