com.github.andyshaox.servlet.mapping.PageViewProcess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GearEE Show documentation
Show all versions of GearEE Show documentation
Enhance and formating the coding of JDK
package com.github.andyshaox.servlet.mapping;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Jan 22, 2016
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class PageViewProcess implements ViewProcess {
@Override
public void process(ServletConfig config , HttpServletRequest request , HttpServletResponse response , View view) throws ServletException , IOException {
request.getRequestDispatcher(view.getResource().toString()).forward(request , response);
}
}