com.opensymphony.webwork.pico.PicoWebWork2ServletDispatcher Maven / Gradle / Ivy
/*****************************************************************************
* Copyright (C) NanoContainer Organization. All rights reserved. *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file. *
* *
*****************************************************************************/
package com.opensymphony.webwork.pico;
import com.opensymphony.webwork.dispatcher.ServletDispatcher;
import com.opensymphony.xwork.ActionProxyFactory;
import org.nanocontainer.nanowar.ServletRequestContainerLauncher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Extension to the standard WebWork2 ServletDispatcher that instantiates
* a new container in the request scope for each request and disposes of it
* correctly at the end of the request.
*
* To use, replace the WebWork ServletDispatcher in web.xml with this.
*
* @deprecated Use {@link PicoFilterDispatcher}
* @author Joe Walnes
*/
public class PicoWebWork2ServletDispatcher extends ServletDispatcher {
public PicoWebWork2ServletDispatcher() {
super();
ActionProxyFactory.setFactory(new PicoActionProxyFactory());
}
public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException {
ServletRequestContainerLauncher containerLauncher = new ServletRequestContainerLauncher(getServletContext(), request);
try {
containerLauncher.startContainer();
// process the servlet using webwork2
super.service(request, response);
} finally {
containerLauncher.killContainer();
}
}
}