Merge branch 'devs/bap-monitoring' into 'jenkins_with_weblogic'
코드 수정사항 반영 See merge request eapim/eapim-admin!20
This commit is contained in:
+14
-1
@@ -156,7 +156,20 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
|
||||
@RequestMapping(value= "/bap/admin/work/messageProcMan.json",params = "cmd=LIST_UAPPL_COMBO")
|
||||
public ModelAndView initUapplCdCombo( HttpServletRequest request,
|
||||
HttpServletResponse response) throws Exception {
|
||||
|
||||
List<Map<String, Object>> uapplCd = comboService.selectCM01ComboList("TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||
Map<String, Object> resultMap = new HashMap<String, Object>();
|
||||
|
||||
resultMap.put("uapplCd" , uapplCd);
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
@RequestMapping(value= "/bap/admin/work/messageProcMan.json",params = "cmd=LIST_PROP")
|
||||
public ModelAndView getProps( HttpServletRequest request,
|
||||
HttpServletResponse response,
|
||||
|
||||
@@ -122,5 +122,16 @@ public class MenuRenderController extends BaseAnnotationController {
|
||||
|
||||
return "/common/screen/top_04";
|
||||
}
|
||||
|
||||
/**
|
||||
* 메뉴권한 미존재 유저 접속 시 빈 화면 frame 노출 20251126
|
||||
*
|
||||
* @return 빈 화면 (blank_screen)
|
||||
*/
|
||||
@GetMapping("/blankScreen.do")
|
||||
public String getBlankScreen(HttpServletRequest request, String serviceType, ModelMap modelMap) throws Exception {
|
||||
return "/common/screen/blank_screen";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user