From d3fc6ef0f0c84e0b121dd7e9628c3b24702ced46 Mon Sep 17 00:00:00 2001 From: myname Date: Mon, 9 Sep 2024 15:12:34 +0900 Subject: [PATCH] =?UTF-8?q?2024-09-09=2015:12=20=EB=B6=84=EC=9F=81?= =?UTF-8?q?=EC=A1=B0=EC=A0=95=EC=82=AC=EB=A1=80=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/seed/com/gtm/exam/ExamBoardController.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/seed/com/gtm/exam/ExamBoardController.java b/src/main/java/seed/com/gtm/exam/ExamBoardController.java index eff02371..44fc5292 100644 --- a/src/main/java/seed/com/gtm/exam/ExamBoardController.java +++ b/src/main/java/seed/com/gtm/exam/ExamBoardController.java @@ -15,8 +15,8 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import seed.com.gtm.seedfile.SeedFileService; -import seed.com.gtm.util.PageMaker; import seed.com.gtm.util.Criteria; +import seed.com.gtm.util.PageMaker; import seed.utils.SeedDbUtilsSupport; @Controller @@ -40,7 +40,7 @@ public class ExamBoardController { public String examWrite(ModelMap model, @RequestParam Map paramMap, @PathVariable(value="boardIdx") String boardIdx){ model.addAttribute("boardIdx", boardIdx); - return "/seed/_extra/gtm/exam/write"; + return "/_extra/gtm/exam/write"; } @RequestMapping(value="/exam/{boardIdx}/write.do", method=RequestMethod.POST) @@ -61,7 +61,7 @@ public class ExamBoardController { map.put("message", "common.message.reg"); map.put("url", "/gtm/case/exam/"+boardIdx+"/list.do"); - return "/seed/_common/jsp/message"; + return "/_common/jsp/message"; } @RequestMapping("exam/{boardIdx}/list.do") @@ -136,7 +136,7 @@ public class ExamBoardController { "&searchTilte=" + paramMap.get("searchTilte") + "&page=" + paramMap.get("page") ); - return "/seed/_common/jsp/message"; + return "/_common/jsp/message"; } @RequestMapping(value="/exam/{boardIdx}/edit.do", method=RequestMethod.GET) @@ -179,7 +179,7 @@ public class ExamBoardController { "&fileFuncType=" + paramMap.get("fileFuncType") ); - return "/seed/_common/jsp/message"; + return "/_common/jsp/message"; } }