From 34206bb7130227706feef01c09078f7eaa88a857 Mon Sep 17 00:00:00 2001 From: thkim Date: Tue, 10 Sep 2024 16:04:07 +0900 Subject: [PATCH] =?UTF-8?q?fixed:=20=EA=B4=80=EB=A6=AC=EC=9E=90=20?= =?UTF-8?q?=EA=B8=B0=EB=B3=B8=ED=98=84=EC=9E=A5=EC=8B=9C=ED=97=98=20?= =?UTF-8?q?=ED=98=84=EC=9E=A5=ED=88=AC=EC=88=98=EC=8B=9C=ED=97=98=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20=EC=95=88=20=EB=90=98=EB=8A=94=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../geoinfo/main/login/LoginController.java | 66 ------------------- 1 file changed, 66 deletions(-) diff --git a/src/main/java/geoinfo/main/login/LoginController.java b/src/main/java/geoinfo/main/login/LoginController.java index 993cba18..642858ce 100644 --- a/src/main/java/geoinfo/main/login/LoginController.java +++ b/src/main/java/geoinfo/main/login/LoginController.java @@ -2683,47 +2683,6 @@ public class LoginController { return null; } - - - @RequestMapping(value = "/scheduledGroupEducationApplicationInquiry.do", method = RequestMethod.GET) - public ModelAndView scheduledGroupEducationApplicationInquiry(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { - ModelAndView mv = new ModelAndView("scheduledGroupEducationApplication/inquiry/scheduledGroupEducationApplicationInquiry"); - - // 로그인 세션이 없을 때 - if (request.getSession().getAttribute("USERID") == null) { - mv.setViewName("index.do?cntyn=0"); - return mv; - } - return mv; - } - - @RequestMapping(value = "/scheduledGroupEducationApplicationInput.do", method = RequestMethod.GET) - public ModelAndView scheduledGroupEducationApplicationInput(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { - ModelAndView mv = new ModelAndView("scheduledGroupEducationApplication/input/scheduledGroupEducationApplicationInput"); - - // 로그인 세션이 없을 때 - if (request.getSession().getAttribute("USERID") == null) { - mv.setViewName("index.do?cntyn=0"); - return mv; - } - return mv; - } - - @RequestMapping(value = "/scheduledGroupEducationApplicationInquiryHistory.do", method = RequestMethod.GET) - public ModelAndView scheduledGroupEducationApplicationInquiryHistory(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { - ModelAndView mv = new ModelAndView("scheduledGroupEducationApplication/input/scheduledGroupEducationApplicationInquiryHistory"); - - // 로그인 세션이 없을 때 - if (request.getSession().getAttribute("USERID") == null) { - mv.setViewName("index.do?cntyn=0"); - return mv; - } - return mv; - } - - - - @RequestMapping(value = "/visitEducationApplicationInquiry.do", method = RequestMethod.GET) public ModelAndView visitEducationApplicationInquiry(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { ModelAndView mv = new ModelAndView("visitEducationApplication/inquiry/visitEducationApplicationInquiry"); @@ -2735,30 +2694,5 @@ public class LoginController { } return mv; } - @RequestMapping(value = "/visitEducationApplicationInput.do", method = RequestMethod.GET) - public ModelAndView visitEducationApplicationInput(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { - ModelAndView mv = new ModelAndView("scheduledGroupEducationApplication/input/visitEducationApplicationInput"); - - // 로그인 세션이 없을 때 - if (request.getSession().getAttribute("USERID") == null) { - mv.setViewName("index.do?cntyn=0"); - return mv; - } - return mv; - } - - @RequestMapping(value = "/visitEducationApplicationInquiryProject.do", method = RequestMethod.GET) - public ModelAndView visitEducationApplicationInquiryProject(@RequestParam HashMap params, HttpServletRequest request,HttpServletResponse response, ModelMap model) throws Exception { - ModelAndView mv = new ModelAndView("scheduledGroupEducationApplication/inquiry/visitEducationApplicationInquiryProject"); - - // 로그인 세션이 없을 때 - if (request.getSession().getAttribute("USERID") == null) { - mv.setViewName("index.do?cntyn=0"); - return mv; - } - return mv; - } - - } \ No newline at end of file