From fbf06470d6b05aa93d3b3da2b115828029c05dd2 Mon Sep 17 00:00:00 2001 From: Hyung Geun Date: Fri, 15 Apr 2022 17:22:44 +0900 Subject: [PATCH] =?UTF-8?q?tg=ED=8F=B4=EB=8D=94=20=EB=B3=B5=EC=82=AC,=20?= =?UTF-8?q?=EC=99=B8=EC=82=AC=ED=86=B5=EA=B3=84,=20=EC=99=B8=EA=B5=AD?= =?UTF-8?q?=EC=88=98=EC=82=AC=EC=97=85=EB=AC=B4=EA=B3=B5=EC=9C=A0=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=A0=84=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kcg/faics/tg/web/WeakPlaceController.java | 12 +- .../sqlmapper/mappers/board/board.xml | 56 ++++- .../resources/sqlmapper/mappers/susa/susa.xml | 7 +- .../sqlmapper/mappers/tg/weakplace.xml | 2 +- .../webapp/WEB-INF/jsp/board/boardList.jsp | 2 +- src/main/webapp/WEB-INF/jsp/tg/corpAdd.jsp | 181 ++++++++++++++ src/main/webapp/WEB-INF/jsp/tg/corpList.jsp | 217 +++++++++++++++++ src/main/webapp/WEB-INF/jsp/tg/corpStats.jsp | 139 +++++++++++ src/main/webapp/WEB-INF/jsp/tg/corpView.jsp | 136 +++++++++++ src/main/webapp/WEB-INF/jsp/tg/divMngAdd.jsp | 214 +++++++++++++++++ src/main/webapp/WEB-INF/jsp/tg/divMngList.jsp | 128 ++++++++++ src/main/webapp/WEB-INF/jsp/tg/divMngView.jsp | 179 ++++++++++++++ src/main/webapp/WEB-INF/jsp/tg/ferryAdd.jsp | 220 ++++++++++++++++++ src/main/webapp/WEB-INF/jsp/tg/ferryList.jsp | 142 +++++++++++ src/main/webapp/WEB-INF/jsp/tg/ferryView.jsp | 168 +++++++++++++ .../webapp/WEB-INF/jsp/tg/weakPlaceAdd.jsp | 203 ++++++++++++++++ .../webapp/WEB-INF/jsp/tg/weakPlaceList.jsp | 156 +++++++++++++ .../webapp/WEB-INF/jsp/tg/weakPlaceView.jsp | 126 ++++++++++ 18 files changed, 2268 insertions(+), 20 deletions(-) create mode 100644 src/main/webapp/WEB-INF/jsp/tg/corpAdd.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/corpList.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/corpStats.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/corpView.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/divMngAdd.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/divMngList.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/divMngView.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/ferryAdd.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/ferryList.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/ferryView.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/weakPlaceAdd.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/weakPlaceList.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/tg/weakPlaceView.jsp diff --git a/src/main/java/kcg/faics/tg/web/WeakPlaceController.java b/src/main/java/kcg/faics/tg/web/WeakPlaceController.java index 8018d8d..568b1cf 100644 --- a/src/main/java/kcg/faics/tg/web/WeakPlaceController.java +++ b/src/main/java/kcg/faics/tg/web/WeakPlaceController.java @@ -111,7 +111,7 @@ public class WeakPlaceController { } model.addAttribute("filename1Ext", filename1Ext); - return "/target/weakPlaceView.tiles"; + return "/tg/weakPlaceView.tiles"; } /** @@ -147,7 +147,7 @@ public class WeakPlaceController { model.addAttribute("today", todayStr); - return "/target/weakPlaceList.tiles"; + return "/tg/weakPlaceList.tiles"; } /** @@ -200,7 +200,7 @@ public class WeakPlaceController { model.addAttribute("loginUserVO", "loginUserVO"); model.addAttribute("registerFlag", "create"); - return "/target/weakPlaceAdd.tiles"; + return "/tg/weakPlaceAdd.tiles"; } /** @@ -233,7 +233,7 @@ public class WeakPlaceController { if (bindingResult.hasErrors()) { model.addAttribute("weakPlaceVO", weakPlaceVO); model.addAttribute("registerFlag", "create"); - return "target/weakPlaceAdd.tiles"; + return "tg/weakPlaceAdd.tiles"; } // 파일 저장 및 데이터 입력 @@ -272,7 +272,7 @@ public class WeakPlaceController { model.addAttribute("loginUserVO", loginUserVO); model.addAttribute("registerFlag", "modify"); - return "/target/weakPlaceAdd.tiles"; + return "/tg/weakPlaceAdd.tiles"; } return "redirect:/target/weakplace/view.do?place1=" @@ -311,7 +311,7 @@ public class WeakPlaceController { if (bindingResult.hasErrors()) { model.addAttribute("weakPlaceVO", weakPlaceVO); model.addAttribute("registerFlag", "modify"); - return "target/weakPlaceAdd.tiles"; + return "tg/weakPlaceAdd.tiles"; } String[] deleteFiles = multiRequest.getParameterValues("deleteFile"); diff --git a/src/main/resources/sqlmapper/mappers/board/board.xml b/src/main/resources/sqlmapper/mappers/board/board.xml index 0ff6f4b..c337db2 100644 --- a/src/main/resources/sqlmapper/mappers/board/board.xml +++ b/src/main/resources/sqlmapper/mappers/board/board.xml @@ -107,18 +107,56 @@ INSERT INTO H3_BD_${id}_LIST ( - BD_MB_ID, BD_CATEGORY, BD_NAME, BD_GROUP_SEQ, - BD_CONTENT, BD_SUBJECT, BD_PARENT_SEQ, BD_PREV_SEQ, BD_NEXT_SEQ, BD_STEP, - BD_DEPTH, BD_REGDATE, BD_HIT, BD_RECOMMEND, BD_IP, BD_NOTICE, - BD_HTML, BD_NUM1, BD_NUM2, BD_DATA1, BD_DATA2, BD_PLACE1, BD_POSITION + BD_MB_ID, + BD_CATEGORY, + BD_NAME, + BD_GROUP_SEQ, + BD_CONTENT, + BD_SUBJECT, + BD_PARENT_SEQ, + BD_PREV_SEQ, + BD_NEXT_SEQ, + BD_STEP, + BD_DEPTH, + BD_REGDATE, + BD_HIT, + BD_RECOMMEND, + BD_IP, + BD_NOTICE, + BD_HTML, + BD_NUM1, + BD_NUM2, + BD_DATA1, + BD_DATA2, + BD_PLACE1, + BD_POSITION ) VALUES ( - #{userId}, #{category}, #{userName}, #{groupSeq}, - #{content}, #{subject}, #{parentSeq}, #{prevSeq}, #{nextSeq}, #{step}, - #{depth}, NOW(), ${hit}, 0, #{ip,jdbcType=VARCHAR}, #{notice}, - 1, 0, 0, #{data1,jdbcType=VARCHAR}, #{data2,jdbcType=VARCHAR}, #{place1,jdbcType=VARCHAR}, #{position,jdbcType=VARCHAR} + #{userId}, + #{category}, + #{userName}, + #{groupSeq}, + #{content}, + #{subject}, + #{parentSeq}, + #{prevSeq}, + #{nextSeq}, + #{step}, + #{depth}, + NOW(), + ${hit}, + 0, + #{ip,jdbcType=VARCHAR}, + #{notice}, + 1, + 0, + 0, + #{data1,jdbcType=VARCHAR}, + #{data2,jdbcType=VARCHAR}, + #{place1,jdbcType=VARCHAR}, + #{position,jdbcType=VARCHAR} ) - SELECT H3_BD_${id}_LIST_SEQ.CURRVAL FROM DUAL + SELECT currval(H3_BD_${id}_LIST_SEQ) as seq + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/corpList.jsp b/src/main/webapp/WEB-INF/jsp/tg/corpList.jsp new file mode 100644 index 0000000..ccc8b0c --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/corpList.jsp @@ -0,0 +1,217 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> + + + + +
+ + + + +
+ 검색결과 : ${corpList.size()}건 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
치안대상 목록
번호
+ + + + + "> + + +
7 + 8 + 12 + 9 + 10 + "> + +
+
+ +
+
+ + +
+ +
+
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/corpStats.jsp b/src/main/webapp/WEB-INF/jsp/tg/corpStats.jsp new file mode 100644 index 0000000..baa7682 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/corpStats.jsp @@ -0,0 +1,139 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +
+ + + + + + + + + + + + + + + + + + +
외사취약지 현황
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
치안대상 통계현황
+ + + + "> + + +
+
+ +
+
+ + +
+ +
+
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/corpView.jsp b/src/main/webapp/WEB-INF/jsp/tg/corpView.jsp new file mode 100644 index 0000000..7e7e67e --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/corpView.jsp @@ -0,0 +1,136 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + +
+ +
+
+ + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/divMngAdd.jsp b/src/main/webapp/WEB-INF/jsp/tg/divMngAdd.jsp new file mode 100644 index 0000000..024730f --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/divMngAdd.jsp @@ -0,0 +1,214 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + " alt=" 이미지" class="fileImg" />
+ + +
+
+ +
+ + + + + + + + +
+ + +     + + + + + 명 +
+ + + + +
+ + + +
+

+ + + 는 삭제합니다. + + +

+

+ + + 는 삭제합니다. + + +

+

+ + + 는 삭제합니다. + + +

+
+
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/divMngList.jsp b/src/main/webapp/WEB-INF/jsp/tg/divMngList.jsp new file mode 100644 index 0000000..743c03e --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/divMngList.jsp @@ -0,0 +1,128 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> + +
+
    +
  • +
  • + + + + + +
  • +
  • + + + +
  • +
+
+
+
+ + + +
+
    +
  • 검색결과${fn:length(divMngList)}
  • +
+
    +
  • +
  • ">
  • +
+
+ +
+ 목록을 확인 할 수 있습니다."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
번호
+ + + + "> + + +
+ +
+
+ +
+
+ + +
+
    + +
  • ">
  • +
    +
+
+
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/divMngView.jsp b/src/main/webapp/WEB-INF/jsp/tg/divMngView.jsp new file mode 100644 index 0000000..e072f71 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/divMngView.jsp @@ -0,0 +1,179 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +

+ + + + " target="_blank">

+
+ +

+ + + + " target="_blank">

+
+ +

+ + + + " target="_blank">

+
+
+ + + + + + + "> + + + + + " alt=" 이미지" width="400" /> + + + + <spring:message code= 이미지" /> + + +
+
+
+ + + +
+
    + +
  • + +
  • +
  • + +
  • +
    +
  • + +
  • +
  • + "> +
  • +
+
+ +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/ferryAdd.jsp b/src/main/webapp/WEB-INF/jsp/tg/ferryAdd.jsp new file mode 100644 index 0000000..f1e281a --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/ferryAdd.jsp @@ -0,0 +1,220 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + +  톤 + + + + +
+ + + + + + + + +  마일 +
+ + +  시간 + + + + (형식 : 2000-01-01) +
+ + +   +  노트
+   +  노트 +
+ + +    +  명
+   +  명 +
+ + + + + +  회 + + + + +
+ + + + + + + " alt=" 이미지" width="350" />
+ +
+
+ +
+ + + +
+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/ferryList.jsp b/src/main/webapp/WEB-INF/jsp/tg/ferryList.jsp new file mode 100644 index 0000000..472cf83 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/ferryList.jsp @@ -0,0 +1,142 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> + + + +
+ + + + +
+ 검색결과 : ${ferryList.size()}건 + 목록을 확인 할 수 있습니다."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
목록
+ + + "> + + +
+ +
+
+ +
+
+ + +
+
    + +
  • + + "> + <spring:message code="/> + +
  • +
    +
  • + + + <spring:message code="/> + +
  • +
+
+
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/ferryView.jsp b/src/main/webapp/WEB-INF/jsp/tg/ferryView.jsp new file mode 100644 index 0000000..6295473 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/ferryView.jsp @@ -0,0 +1,168 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + "> + + + " alt=" 이미지" width="350" /> + + + + <spring:message code= 이미지" /> + + +
 톤
+ 최대  노트
+ 항해  노트
+
+ 여객   명
+ 승무원  명
+
+
+
+ + +
+
    + +
  • + + + <spring:message code='button.goModify' /> + +
  • +
  • + + + <spring:message code='button.goDelete' /> + +
  • +
    +
  • + + + <spring:message code='button.print' /> + +
  • +
  • + + "> + <spring:message code='button.goList' /> + +
  • +
+
+
+ + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/weakPlaceAdd.jsp b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceAdd.jsp new file mode 100644 index 0000000..55702a4 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceAdd.jsp @@ -0,0 +1,203 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +  -  + ${weakPlaceVO.wpNo} + +
+ +
+ +
+ +
+ + +

+
+ + +

+ + + + 는 삭제합니다. + + + + + +

+
+
+
+ + +

+
+ + +

+ + + + 는 삭제합니다. + + + + + +

+
+
+
+
+ +
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/weakPlaceList.jsp b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceList.jsp new file mode 100644 index 0000000..382580b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceList.jsp @@ -0,0 +1,156 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> + +
+
    +
  • +
  • + + + + + + +
  • +
  • + + + +
  • +
+
+
+
+ + + + + + + + + + + + + + + + + +
+ + +
+
    +
  • < 현재 >
  • +
  • 검색결과${fn:length(weakPlaceList)}
  • +
+
    +
  • +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ &wpNo="> + + +
+
+ +
+
+ + +
+
    + +
  • +
    +
+
+ + +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/tg/weakPlaceView.jsp b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceView.jsp new file mode 100644 index 0000000..f738239 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/tg/weakPlaceView.jsp @@ -0,0 +1,126 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<% pageContext.setAttribute("newline", "\n"); %> + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + " alt="" class="img" />
+
+ + + + " target="_blank"> + + +
+ + + + " target="_blank"> + + +
+
+
+ + + +
+
    + +
  • + +
  • +
  • + +
  • +
    +
  • + +
  • +
  • + +
  • +
+
+
+ + + \ No newline at end of file