Merge branch 'thkim'
commit
147b1bd603
|
|
@ -176,6 +176,9 @@ public class WebConfirm
|
|||
query.setParam("HOLE_CODE", resultSet.getString("HOLE_CODE"));
|
||||
resultCnt += query.executeUpdate(connection);
|
||||
query.close();
|
||||
|
||||
exeQuery(sql = "DELETE FROM TBL_HEADER_HOLE WHERE HOLE_CODE = [HOLE_CODE]", resultSet.getString("HOLE_CODE"));
|
||||
|
||||
final StringBuffer sbQuery = new StringBuffer();
|
||||
sbQuery.append(" INSERT INTO TBL_HEADER_HOLE ( ");
|
||||
sbQuery.append(" GID ");
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ import java.io.PrintWriter;
|
|||
import java.net.InetAddress;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URLEncoder;
|
||||
import java.sql.SQLException;
|
||||
import java.text.MessageFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.ArrayList;
|
||||
|
|
@ -961,8 +962,19 @@ public class MainController
|
|||
|
||||
// 다운로드 파일 목록
|
||||
map.put("target", "home");
|
||||
List<Map<String, Object>> lstFile = fileService.selectFiles(map);
|
||||
mv.addObject("files", lstFile);
|
||||
try {
|
||||
List<Map<String, Object>> lstFile = fileService.selectFiles(map);
|
||||
mv.addObject("files", lstFile);
|
||||
} catch (SQLException e) {
|
||||
System.out.println(e.getMessage());
|
||||
|
||||
if (false && !e.getMessage().contains("Already closed")) {
|
||||
// "Already closed" 예외가 아닌 경우에만 처리
|
||||
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
|
||||
List<Map<String, Object>> notice = mainService.selectNotice();
|
||||
mv.addObject("notice", notice);
|
||||
List<Map<String, Object>> pds = mainService.selectPds();
|
||||
|
|
@ -1227,7 +1239,7 @@ public class MainController
|
|||
|
||||
return mv;
|
||||
}
|
||||
|
||||
|
||||
// 개인정보처리방침 이전 방침(20200506)
|
||||
@RequestMapping(value = "personalinfo_20210531.do")
|
||||
public ModelAndView personalinfo_20210531(Map<String, Object> map, HttpServletRequest request, HttpServletResponse response) throws Exception
|
||||
|
|
@ -1236,7 +1248,7 @@ public class MainController
|
|||
|
||||
return mv;
|
||||
}
|
||||
|
||||
|
||||
// 개인정보처리방침 이전 방침(20200506)
|
||||
@RequestMapping(value = "personalinfo_20220831.do")
|
||||
public ModelAndView personalinfo_20220831(Map<String, Object> map, HttpServletRequest request, HttpServletResponse response) throws Exception
|
||||
|
|
@ -1245,7 +1257,7 @@ public class MainController
|
|||
|
||||
return mv;
|
||||
}
|
||||
|
||||
|
||||
// 개인정보처리방침 이전 방침(20240625)
|
||||
@RequestMapping(value = "personalinfo_20240625.do")
|
||||
public ModelAndView personalinfo_20240625(Map<String, Object> map, HttpServletRequest request, HttpServletResponse response) throws Exception
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@ dataconnection1.version=
|
|||
# \uc544\ub798\ub294 \uac74\uae30\uc5f0 \uc6b4\uc601\uc11c\ubc84
|
||||
# dataconnection1.url=jdbc:oracle:thin:@192.168.0.8:3452:orcl
|
||||
#dataconnection1.url=jdbc:oracle:thin:@192.168.0.8:3452:orcl
|
||||
# \uc544\ub798\ub294 \ub514\ube44\uc5d4\ud14d \uac1c\ubc1c \uc11c\ubc84
|
||||
# \uc544\ub798\ub294 \ub514\ube44\uc5d4\ud14d \uac1c\ubc1c\uc11c\ubc84
|
||||
#dataconnection1.url=jdbc:oracle:thin:@118.219.150.34:1521:ORAGEODEV
|
||||
# \uc544\ub798\ub294 \ub514\ube44\uc5d4\ud14d \ub85c\uceec \uc11c\ubc84
|
||||
# \uc544\ub798\ub294 \ub514\ube44\uc5d4\ud14d \ub85c\uceec\uc11c\ubc84
|
||||
dataconnection1.url=jdbc:oracle:thin:@127.0.0.1:1521:ORAGEODEV
|
||||
################################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -503,7 +503,7 @@
|
|||
</p>
|
||||
<p>
|
||||
<span class="contact-text-title">입력 및 검수관련 문의</span>
|
||||
<span class="contact-text-con">031-910-0566</span>
|
||||
<span class="contact-text-con">031-995-0818</span>
|
||||
</p>
|
||||
<p>
|
||||
<span class="contact-text-title">이메일</span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue