MyRequestProcessor.java
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package classmate;
  2. import javax.servlet.http.HttpServlet;
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5. import org.apache.struts.action.RequestProcessor;
  6. import org.apache.struts.config.ForwardConfig;
  7. import org.apache.commons.logging.Log;
  8. public class MyRequestProcessor extends RequestProcessor {
  9. public MyRequestProcessor() {}
  10. protected boolean processPreprocess( HttpServletRequest request,
  11.                                      HttpServletResponse response ){
  12.  
  13.   boolean continueProcessing = true;
  14.  
  15.   // Get the name of the remote host and log it
  16.   String remoteHost = request.getRemoteHost(  );
  17.   log.info( "Request from host: " + remoteHost );
  18.  
  19.   // Make sure the host is from one that you expect
  20.   if (( remoteHost == null || !remoteHost.startsWith( "127."))){
  21.      // Not the localhost, so don't allow the host to access the site
  22.      continueProcessing = false;
  23.  
  24.      try{
  25.        response.sendRedirect( "/S02_Extend/error.jsp");
  26.      }catch( Exception ex ){
  27.        log.error("Problem sending redirect from processPreprocess()") ;
  28.      }
  29.   }
  30.   return continueProcessing;
  31. }
  32. }