All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nanocontainer.nanowar.nanoweb.NanoWebVelocityServlet Maven / Gradle / Ivy

The newest version!
package org.nanocontainer.nanowar.nanoweb;

import org.apache.velocity.Template;
import org.apache.velocity.context.Context;
import org.apache.velocity.tools.view.servlet.VelocityViewServlet;

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

/**
 * @author Aslak Hellesøy
 * @version $Revision: 1570 $
 */
public class NanoWebVelocityServlet extends VelocityViewServlet {
    protected Template handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Context context) throws Exception {
        context.put("action", httpServletRequest.getAttribute("action"));
        return super.handleRequest(httpServletRequest, httpServletResponse, context);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy