%@ page import="java.io.*, java.util.*"%> <%@ page language="java" contentType="text/html;charset=utf-8"%> <%@ page import="com.eactive.eai.common.EAITable"%> <%@ page import="com.eactive.eai.common.bizkey.BizKeyFldVO"%> <%@ page import="com.eactive.eai.common.bizkey.BizKeyManager"%> <%@ page import="com.eactive.eai.common.bizkey.BizKeyVO"%> <% BizKeyManager manager = BizKeyManager.getInstance(); String[] alls = manager.getAllKeyNames(); String action = request.getParameter("actionType"); String selectedKey = request.getParameter("selectedKey"); if(selectedKey == null && alls.length > 1) { selectedKey = alls[0]; } if ("reload".equals(action)){ //마지막 TR 을 빼고 처리 해야됨 manager.reload(selectedKey.substring(0, selectedKey.length()-2), selectedKey.substring(selectedKey.length()-2)); }else if ("reloadAll".equals(action)){ manager.reload(); }else { ; } BizKeyVO vo = null; if(selectedKey != null) { vo = manager.getBizKey(selectedKey); } %>
로그조회키 관리