diff --git a/src/main/java/nlib/info/web/InformController.java b/src/main/java/nlib/info/web/InformController.java
index 7dec6798..8c7b433b 100644
--- a/src/main/java/nlib/info/web/InformController.java
+++ b/src/main/java/nlib/info/web/InformController.java
@@ -196,5 +196,36 @@ public class InformController extends NlibCommonController {
return "nlib/inform/selectNCultureLocationInfo";
}
+ /**
+ * 찾아오는길 조회한다.
+ *
+ * @param req
+ * @param authentication
+ * @param model
+ * @return
+ */
+ @RequestMapping("/inform/selectNCultureLocationInfoPopup.do")
+ public String selectNCultureLocationInfoPopup(HttpServletRequest req, Authentication authentication, ModelMap model) {
+ log.debug("selectNCultureLocationInfo : init");
+
+ //-------------------------------
+ // REQ VO 구성
+ //-------------------------------
+ DataApiReqVO reqVO = new DataApiReqVO();
+ reqVO.setAuthKey(createAuthKey(req, authentication));
+
+ // 요청
+ DataApiResVO resVO = informService.selectNCultureLocationInfo(reqVO);
+
+ // 반환 정보
+ model.addAttribute("informContent", resVO.getInfoItem("informContent"));
+ model.addAttribute("zipcode", resVO.getInfoItem("zipcode"));
+ model.addAttribute("addr1", resVO.getInfoItem("addr1"));
+ model.addAttribute("addr2", resVO.getInfoItem("addr2"));
+ model.addAttribute("tel", resVO.getInfoItem("tel"));
+ model.addAttribute("fax", resVO.getInfoItem("fax"));
+
+ return "nlib/inform/selectNCultureLocationInfoPopup";
+ }
}
\ No newline at end of file
diff --git a/src/main/java/nlib/restful/service/XmlConverter.java b/src/main/java/nlib/restful/service/XmlConverter.java
index 541169ef..66580e5c 100644
--- a/src/main/java/nlib/restful/service/XmlConverter.java
+++ b/src/main/java/nlib/restful/service/XmlConverter.java
@@ -36,7 +36,7 @@ public class XmlConverter {
XMLEventReader eventReader = inputFactory.createXMLEventReader(bIn);
resMap = getElementValue("result", eventReader, null);
- log.debug("Converting XML to HashMap : Done >> " + resMap);
+ //log.debug("Converting XML to HashMap : Done >> " + resMap);
} catch (XMLStreamException e) {
e.printStackTrace();
} catch (Exception e) {
diff --git a/src/main/java/nlib/restful/service/impl/DataApiTempXml.java b/src/main/java/nlib/restful/service/impl/DataApiTempXml.java
index 7d13a327..7c085675 100644
--- a/src/main/java/nlib/restful/service/impl/DataApiTempXml.java
+++ b/src/main/java/nlib/restful/service/impl/DataApiTempXml.java
@@ -209,7 +209,7 @@ public class DataApiTempXml implements DataApiInterface {
}
- log.info("RESUTN XML STR : " + returnXmlStr);
+ //log.info("RESUTN XML STR : " + returnXmlStr);
return returnXmlStr;
}
diff --git a/src/main/webapp/WEB-INF/jsp/nlib/board/listQnAs.jsp b/src/main/webapp/WEB-INF/jsp/nlib/board/listQnAs.jsp
index 4e7666c3..8cfd0939 100644
--- a/src/main/webapp/WEB-INF/jsp/nlib/board/listQnAs.jsp
+++ b/src/main/webapp/WEB-INF/jsp/nlib/board/listQnAs.jsp
@@ -45,7 +45,7 @@
+
+
+