com.wdpress
クラス FindAction

java.lang.Object
  |
  +--com.wdpress.Action
        |
        +--com.wdpress.FindAction

public class FindAction
extends Action

スコープの説明やDBのSELECT文の説明で作成したサンプルコード。

作成者:
iochi

コンストラクタの概要
FindAction()
           
 
メソッドの概要
 java.lang.String perform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          ビジネスロジックの実装です。
 
クラス com.wdpress.Action から継承したメソッド
getServlet
 
クラス java.lang.Object から継承したメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

FindAction

public FindAction()
メソッドの詳細

perform

public java.lang.String perform(javax.servlet.http.HttpServletRequest request,
                                javax.servlet.http.HttpServletResponse response)
                         throws java.io.IOException,
                                javax.servlet.ServletException
ビジネスロジックの実装です。

定義:
クラス Action 内の perform
パラメータ:
request - Http要求。
response - Http応答。
戻り値:
String JSPページのパス。
例外:
java.io.IOException - IOに関する例外。
javax.servlet.ServletException - Servletに関する例外。
関連項目:
Action.perform(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)