Compare commits
No commits in common. "147b1bd60309a21ccf55f5b9b0a02aca5206ac18" and "4c5c827f9d7581b9a27a64f93d39268f2888c2b5" have entirely different histories.
147b1bd603
...
4c5c827f9d
|
|
@ -176,9 +176,6 @@ public class WebConfirm
|
||||||
query.setParam("HOLE_CODE", resultSet.getString("HOLE_CODE"));
|
query.setParam("HOLE_CODE", resultSet.getString("HOLE_CODE"));
|
||||||
resultCnt += query.executeUpdate(connection);
|
resultCnt += query.executeUpdate(connection);
|
||||||
query.close();
|
query.close();
|
||||||
|
|
||||||
exeQuery(sql = "DELETE FROM TBL_HEADER_HOLE WHERE HOLE_CODE = [HOLE_CODE]", resultSet.getString("HOLE_CODE"));
|
|
||||||
|
|
||||||
final StringBuffer sbQuery = new StringBuffer();
|
final StringBuffer sbQuery = new StringBuffer();
|
||||||
sbQuery.append(" INSERT INTO TBL_HEADER_HOLE ( ");
|
sbQuery.append(" INSERT INTO TBL_HEADER_HOLE ( ");
|
||||||
sbQuery.append(" GID ");
|
sbQuery.append(" GID ");
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ import java.io.PrintWriter;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
import java.sql.SQLException;
|
|
||||||
import java.text.MessageFormat;
|
import java.text.MessageFormat;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
@ -962,19 +961,8 @@ public class MainController
|
||||||
|
|
||||||
// 다운로드 파일 목록
|
// 다운로드 파일 목록
|
||||||
map.put("target", "home");
|
map.put("target", "home");
|
||||||
try {
|
|
||||||
List<Map<String, Object>> lstFile = fileService.selectFiles(map);
|
List<Map<String, Object>> lstFile = fileService.selectFiles(map);
|
||||||
mv.addObject("files", lstFile);
|
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();
|
List<Map<String, Object>> notice = mainService.selectNotice();
|
||||||
mv.addObject("notice", notice);
|
mv.addObject("notice", notice);
|
||||||
List<Map<String, Object>> pds = mainService.selectPds();
|
List<Map<String, Object>> pds = mainService.selectPds();
|
||||||
|
|
|
||||||
|
|
@ -503,7 +503,7 @@
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span class="contact-text-title">입력 및 검수관련 문의</span>
|
<span class="contact-text-title">입력 및 검수관련 문의</span>
|
||||||
<span class="contact-text-con">031-995-0818</span>
|
<span class="contact-text-con">031-910-0566</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span class="contact-text-title">이메일</span>
|
<span class="contact-text-title">이메일</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue