1. ResponseDto객채를 생성합니다.
ResponseDto rDto = (ResponseDto)request.getAttribute("SestCdMgmt_searchSestCdMgmt");
2. String 객체에 rDto로 받아 String 객체로 cast합니다.
이부분에서 어렵더라구요 ㅡㅡ; 전 제가 생각할때는 dto로 casting하다
castException때문에 찾느라 고생했습니다. 조심조심...
String storeSestCdMgmt = (String)rDto.get("storeSestCdMgmt");
//저장
이렇게 하면 개수를 리턴하는 del, ins, upt 를 처리 할수 있습니다.
3. 메세지처리시 getParameter를 호출하여 fw_serviceName 하면
String 를 반환하여 TrustForm에서 호출한 서비스이름을 반환합니다.
String fw_serviceName = request.getParameter("fw_serviceName");
반환한 이름으로 조건을 줘서 메세지를 출력할수있습니다.