tle.framework
Class RequestReceiver

java.lang.Object
  extended byHttpServlet
      extended bytle.framework.RequestReceiver

public class RequestReceiver
extends HttpServlet

Ŭ¶óÀ̾ðÆ®ÀÇ ¿äûÀ» TLEFramework¿¡ Àü´ÞÇØÁÖ´Â ¼­ºí¸´.

Ŭ¶óÀ̾ðÆ®ÀÇ ¿äûÀ» ¹ÞÀº RequestReceiver´Â TLEFramework.processingRequest() ¸Þ¼Òµå¿¡¼­ ¿äûÀ» Àü´ÞÇÑ´Ù. ¾î¶² ¿äûÀ» Àü´ÞÇÒÁöÀÇ ¿©ºÎ´Â web.xml ÆÄÀÏÀÇ ¼³Á¤À» ÅëÇØ¼­ °áÁ¤µÈ´Ù. ¿¹¸¦ µé¾î, *.do¿¡ ÇØ´çÇÏ´Â ¿äûÀ» Ʋ ÇÁ·¹ÀÓ¿öÅ©°¡ ó¸®ÇÏ±æ ¿øÇÑ´Ù¸é ´ÙÀ½°ú °°Àº ¼³Á¤Á¤º¸¸¦ web.xml ÆÄÀÏ¿¡ Ãß°¡ÇØÁÖ¸é µÈ´Ù.

 
   <servlet>
       <servlet-name>TLERequestReceiver</servlet-name>
       <servlet-class>tle.framework.RequestReceiver</servlet-class>
   </servlet>
   
   <servlet-mapping>
       <servlet-name>TLERequestReceiver</servlet-name>
       <url-pattern>*.do</url-pattern>
   </servlet-mapping>

 

Since:
2.0
Author:
ÃÖ¹ü±Õ
See Also:
Serialized Form

Constructor Summary
RequestReceiver()
           
 
Method Summary
protected  void doGet(HttpServletRequest request, HttpServletResponse response)
          processing() ¸Þ¼Òµå È£Ãâ
protected  void doPost(HttpServletRequest request, HttpServletResponse response)
          processing() ¸Þ¼Òµå È£Ãâ
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RequestReceiver

public RequestReceiver()
Method Detail

doGet

protected void doGet(HttpServletRequest request,
                     HttpServletResponse response)
              throws ServletException,
                     java.io.IOException
processing() ¸Þ¼Òµå È£Ãâ

Throws:
ServletException
java.io.IOException
See Also:
javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)

doPost

protected void doPost(HttpServletRequest request,
                      HttpServletResponse response)
               throws ServletException,
                      java.io.IOException
processing() ¸Þ¼Òµå È£Ãâ

Throws:
ServletException
java.io.IOException
See Also:
javax.servlet.http.HttpServlet#doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)