From 4964e183e658f137235999264254cd203cc664d5 Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Tue, 1 Aug 2023 18:45:10 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=97=B0=EA=B3=84=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/intf-conf/file-job.conf | 12 ++++++------ src/main/resources/spring/context-scheduler.xml | 8 ++++---- src/main/resources/sql/mapper/base/file-mapper.xml | 13 +++++++------ 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/main/resources/intf-conf/file-job.conf b/src/main/resources/intf-conf/file-job.conf index 74d978c2..65338bfc 100644 --- a/src/main/resources/intf-conf/file-job.conf +++ b/src/main/resources/intf-conf/file-job.conf @@ -1,11 +1,11 @@ { "dirs": { - "receive": "C:\\workspace\\ESB_AGENT\\RCV", /* 수신 파일 최상위 디렉토리 */ - "send": "C:\\workspace\\ESB_AGENT\\SND", /* 전송 파일 최상위 디렉토리 */ + "receive": "files/ESB_AGENT/RCV", /* 수신 파일 최상위 디렉토리 */ + "send": "files/ESB_AGENT/SND", /* 전송 파일 최상위 디렉토리 */ - "working": "C:\\workspace\\xit\\filesite\\work", /* 파일 작업 최상위 디렉토리 */ - "success": "C:\\workspace\\xit\\filesite\\success", /* 작업 완료한 파일의 최상위 디렉토리 */ - "fail": "C:\\workspace\\xit\\filesite\\fail" /* 작업 실패한 파일의 최상위 디렉토리 */ + "working": "files/interface/work", /* 파일 작업 최상위 디렉토리 */ + "success": "files/interface/success", /* 작업 완료한 파일의 최상위 디렉토리 */ + "fail": "files/interface/fail" /* 작업 실패한 파일의 최상위 디렉토리 */ }, "dirCodes": { @@ -40,7 +40,7 @@ "rceptId": "40219", /* 접수우체국 국기호 */ "expiryDays": 10, /* 배달 만료 일수 */ - "attachmentDir": "C:\\workspace\\xit\\filesite\\attachment\\epost", /* 원본 첨부파일 디렉토리 경로 */ + "attachmentDir": "files/interface/attachment/epost", /* 원본 첨부파일 디렉토리 경로 */ "txtFilename": "POSDF5$send_{yyyyMMddHHmmssSSS}.txt", "zipFilename": "POSDF5${conKey}.zip" }, diff --git a/src/main/resources/spring/context-scheduler.xml b/src/main/resources/spring/context-scheduler.xml index 321a181c..ad5f2fc0 100644 --- a/src/main/resources/spring/context-scheduler.xml +++ b/src/main/resources/spring/context-scheduler.xml @@ -15,7 +15,7 @@ - + @@ -25,7 +25,7 @@ - + @@ -35,7 +35,7 @@ - + @@ -45,7 +45,7 @@ - + diff --git a/src/main/resources/sql/mapper/base/file-mapper.xml b/src/main/resources/sql/mapper/base/file-mapper.xml index 01066d19..55f5dc6b 100644 --- a/src/main/resources/sql/mapper/base/file-mapper.xml +++ b/src/main/resources/sql/mapper/base/file-mapper.xml @@ -22,12 +22,13 @@ SELECT INF_TYPE , CONCAT('files/', DIR, DATE_FORMAT(CURRENT_DATE, '/%Y/%m/%d/')) DIR FROM ( - SELECT '010' INF_TYPE, 'smg' DIR UNION - SELECT '020' INF_TYPE, 'saeol' DIR UNION - SELECT '030' INF_TYPE, 'epost' DIR UNION - SELECT '100' INF_TYPE, 'violation' DIR UNION - SELECT '110' INF_TYPE, 'opinion' DIR UNION - SELECT '190' INF_TYPE, 'capture' DIR + SELECT '010' INF_TYPE, 'interface/attachment/smg' DIR UNION + SELECT '020' INF_TYPE, 'interface/attachment/saeol' DIR UNION + SELECT '030' INF_TYPE, 'interface/attachment/epost' DIR UNION + + SELECT '100' INF_TYPE, 'attachment/violation' DIR UNION + SELECT '110' INF_TYPE, 'attachment/opinion' DIR UNION + SELECT '190' INF_TYPE, 'attachment/capture' DIR ) FILE_DIRS