com.poscoict.glueframework.biz.activity
Class GlueJdbcDelete
java.lang.Object
  
com.poscoict.glueframework.biz.activity.GlueActivity<GlueContext>
      
com.poscoict.glueframework.biz.activity.GlueJdbcDelete
public class GlueJdbcDelete
- extends GlueActivity<GlueContext>
 
Delete Activity. GlueJdbcDelete Class´Â
 "delete from emp where empno=?" ¿Í °°Àº SQL delete statement¸¦ ¼öÇà ÇÏ´Â
 Activity ÀÌ´Ù. Webȸé°ú NonUI °øÅëÀ¸·Î »ç¿ëµÇ°í Binding Parameter TypeÀº WebÀÎ °æ¿ì
 String []ÀÇ {0}¹øÂ°·Î Binding Çϰí WebÀÌ ¾Æ´Ñ °æ¿ì´Â ÇØ´ç Object¸¦ Binding ÇÑ´Ù.
 ¿©±â¼ chk-nameÀÌ ÀÖ´Â °æ¿ì WebÀÇ CheckBox¿¡ Check µÈ ¼ö¸¸Å ¹Ýº¹ ÇÏ°í ¾ø´Â °æ¿ì´Â
 Context¿¡¼ ¹Ù·Î String[] ·Î getÇÏ¿© Binding ÇÑ´Ù. NonUIÀÇ °æ¿ì Data TypeÀÌ
 String[]°¡ ¾Æ´Ñ °æ¿ì ¹Ù·Î ÇØ´ç Object·Î Binding ÇÑ´Ù.
 
 
 »ç¿ë ¿¹
 - case 1 :
 
     
     
     
     
     
     
 
 ==>
      binding(web) :
              List args = new ArrayList();
              args.add(((String[])ctx.get("EMPNO"))[0]);
              GlueParameter param = new GlueParameter(args);
           (NonUI) :
              List args = new ArrayList();
              args.add(ctx.get("EMPNO"));
              GlueParameter param = new GlueParameter(args);
 
 
 - case 2 : Looping ó¸®. (Web)
 
      
      
      
      
      
      
      
 
 ==>
      binding : String[] checked = ctx.get("chk");
              List args = new ArrayList();
              for(int i=0, iz=checked.length; i param = new GlueParameter(args);
 
 
 - case 3 : Looping ó¸®. (NonUI)
 
      
      
      
      
      
      
      
 
 ==>
      binding : List list = (ArrayList)ctx.get("dataList");
              for(int i=0, iz=list.size(); i param = new GlueParameter(args);
                  ..
              }
 
 
 - case 4 :
 
     
     
     
     
     
 
 ==>
      binding(web) :
              Map args = new HashMap();
              args.put("empno", ((String[])ctx.get("EMPNO"))[0]);
              GlueParameter
 
 - case 5 : Looping ó¸®. (Web)
 
     
     
     
     
     
     
 
 ==>
      binding : String[] checked = ctx.get("chk");
              for(int i=0, iz=checked.length; i param = new GlueParameter(args);
                  ..
              }
 
 
 - case 6 : Looping ó¸®. (NonUI)
 
     
     
     
     
     
     
 
 ==>
      binding : List list = (ArrayList)ctx.get("dataList");
              for(int i=0, iz=checked.length; i param = new GlueParameter(args);
                  ..
              }
 
 
 
 Property ¼³Á¤
 - dao : (Çʼö) applicationContext.xmlÀÇ DAO id.
 
 - sql-key : (Çʼö) xxx-query.glue_sqlÀÇ query id
 
 - param-count : (¼±ÅÃ) Binding ÇÒ °³¼ö (delete emp where empno=?)ÀÇ "?" ¼ö
 
 - param#(param0,param1...) : (¼±ÅÃ) Binding Value ("?"¿Í ¼ø¼ ÀÏÄ¡ ÇÏ¿©¾ß ÇÔ)
 
 - param-bindings : (¼±ÅÃ) binding¿¡ »ç¿ëµÇ´Â °ª°ú Mapping µÇ´Â Key( bindName=ctxName[|bindName=ctxName] ).
         ctxÀÇ key°¡ binding variable name°ú °°Àº °æ¿ì »ý·«(´ë¼Ò¹®ÀÚ ±¸ºÐ).
         ctxName Àº ContextÀÇ KeyÀ̸ç, °¡ ÀÖ´Ù¸é "dataList" ÀÇ mapÀÇ Key.
 
 - chk-name : (¼±ÅÃ) ȸéÀÇ CheckBox ID(HttpRequestÀÇ parameter name).
          ¿Í °°ÀÌ "chk" °¡ ¼±¾ð µÇ¾î ÀÖ´Ù¸é,
         ÀÇ value °ª¿¡ µû¶ó Looping 󸮸¦ ÇÑ´Ù.
         chkÀÇ value´Â 0,1,2...,n À¸·Î ºÎ¿©µÇ¸ç checked µÈ °ª¸¸ Context¿¡ ´ã±ä´Ù.
 
 - list-key : (¼±ÅÃ) SQL ¹®¿¡ Binding ÇÒ Data Context Key.
          ¿Í °°ÀÌ "dataList" °¡ ¼±¾ð µÇ¾î ÀÖ´Ù¸é,
         ÀÌÀü Activity¿¡¼ List(Map) ±¸Á¶ÀÇ Data¸¦ »ý¼ºÇؼ Context¿¡ ´ã´Â´Ù.
         [ sample java code ] 
             List dataList = new ArrayList();
             Map data1 = new HashMap();
             data1.put("EMPNO","1111");
             dataList.add(data1);
             Map data2 = new HashMap();
             data2.put("EMPNO","2222");
             dataList.add(data2);
             ctx.put("dataList",dataList);
 
 - result-key : (¼±ÅÃ) Context¿¡ ´ã±â´Â Query ¼öÇà °á°ú(»èÁ¦ record ¼ö) Key.
         [ default ] : _deleteCnt
 
 
 
 Query File : {name}-query.glue_sql
 
     
           delete from emp where empno=?
     ]]>
 
 
     
           delete from emp where empno=:empno
     ]]>
 
 
 
 
 
 
| Methods inherited from class com.poscoict.glueframework.biz.activity.GlueActivity | 
commitTransaction, getDao, getEventList, getName, getProperty, getPropertyNames, getTransition, rollbackTransaction, setEventList, setName, setProperty, setTransition | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
GlueJdbcDelete
public GlueJdbcDelete()
runActivity
public String runActivity(GlueContext ctx)
- Description copied from class: 
GlueActivity 
- Sub Class¿¡¼ ¹Ýµå½Ã ±¸ÇöÇÏ¿©¾ß ÇÏ´Â Abstract Method À̸ç ÀÌ Method´Â F/W¿¡¼ È£ÃâÇÑ´Ù. °á°ú °ªÀº GlueContext¿¡ ´ã¾Æ¼ ´ÙÀ½ Activity ¶Ç´Â F/W¿¡ Àü´ÞÇÏ°Ô µÈ´Ù. ÇÊ¿äÇÑ ¸ðµç Data´Â
 GlueContext¿¡¼ È£ÃâÇÏ¿© »ç¿ëÇÏ°Ô µÈ´Ù.
- Specified by:
 runActivity in class GlueActivity<GlueContext>
 
- Parameters:
 ctx - GlueContext
- Returns:
 - String Á¤»óÀûÀ̸é "success"¸¦ Return ÇÏ°í ºñÁ¤»ó 󸮸¦ ¿øÇϸé "failure"¸¦ Return ÇÑ´Ù.
 
         
 ¿¹) 
 
 
 ==> return "success"À̸é BizLogic Activity ¸¦ ½ÇÇàÇÔ.
 
 
 
 
Copyright © 2013–2014 POSCO ICT SWÁ¦Ç°±â¼úÆÀ. All rights reserved.