From 07368f18cb3eca0d91d25bf7faaa49c03738f67c Mon Sep 17 00:00:00 2001 From: hyojin kim Date: Thu, 12 Feb 2026 10:41:27 +0900 Subject: [PATCH] =?UTF-8?q?:fire:=20application.yml=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application-dev.yml | 8 ++++---- src/main/resources/application-prod.yml | 16 ++++++++-------- src/main/resources/application.yml | 16 ++++++++-------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index 2cc93b6..51fada2 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -110,10 +110,10 @@ app: # Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음) core20: - schema: t_std_snp_data # 스키마명 - table: ship_detail_data # 테이블명 - imo-column: ihslrorimoshipno # IMO/LRNO 컬럼명 (PK, NOT NULL) - mmsi-column: maritimemobileserviceidentitymmsinumber # MMSI 컬럼명 (NULLABLE) + schema: t_std_snp_data # 스키마명 + table: tb_ship_info_mst # 테이블명 + imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL) + mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE) # 파티션 관리 설정 partition: diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml index c7a8612..1291ece 100644 --- a/src/main/resources/application-prod.yml +++ b/src/main/resources/application-prod.yml @@ -22,12 +22,12 @@ spring: hibernate: dialect: org.hibernate.dialect.PostgreSQLDialect format_sql: true - default_schema: t_snp_data + default_schema: t_std_snp_data # Batch Configuration batch: jdbc: - table-prefix: "t_snp_data.batch_" + table-prefix: "t_std_snp_data.batch_" initialize-schema: never # Changed to 'never' as tables already exist job: enabled: false # Prevent auto-run on startup @@ -49,7 +49,7 @@ spring: org.quartz.threadPool.threadCount: 10 org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate - org.quartz.jobStore.tablePrefix: t_snp_data.QRTZ_ + org.quartz.jobStore.tablePrefix: t_std_snp_data.QRTZ_ org.quartz.jobStore.isClustered: false org.quartz.jobStore.misfireThreshold: 60000 @@ -112,16 +112,16 @@ app: # Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음) core20: - schema: t_snp_data # 스키마명 - table: ship_detail_data # 테이블명 - imo-column: ihslrorimoshipno # IMO/LRNO 컬럼명 (PK, NOT NULL) - mmsi-column: maritimemobileserviceidentitymmsinumber # MMSI 컬럼명 (NULLABLE) + schema: t_std_snp_data # 스키마명 + table: tb_ship_info_mst # 테이블명 + imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL) + mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE) # 파티션 관리 설정 partition: # 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD) daily-tables: - - schema: t_snp_data + - schema: t_std_snp_data table-name: ais_target partition-column: message_timestamp periods-ahead: 3 # 미리 생성할 일수 diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 45e4cab..042b784 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -22,12 +22,12 @@ spring: hibernate: dialect: org.hibernate.dialect.PostgreSQLDialect format_sql: true - default_schema: t_snp_data + default_schema: t_std_snp_data # Batch Configuration batch: jdbc: - table-prefix: "t_snp_data.batch_" + table-prefix: "t_std_snp_data.batch_" initialize-schema: never # Changed to 'never' as tables already exist job: enabled: false # Prevent auto-run on startup @@ -49,7 +49,7 @@ spring: org.quartz.threadPool.threadCount: 10 org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate - org.quartz.jobStore.tablePrefix: t_snp_data.QRTZ_ + org.quartz.jobStore.tablePrefix: t_std_snp_data.QRTZ_ org.quartz.jobStore.isClustered: false org.quartz.jobStore.misfireThreshold: 60000 @@ -169,16 +169,16 @@ app: # Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음) core20: - schema: t_snp_data # 스키마명 - table: tb_ship_info_mst # 테이블명 - imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL) - mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE) + schema: t_std_snp_data # 스키마명 + table: tb_ship_info_mst # 테이블명 + imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL) + mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE) # 파티션 관리 설정 partition: # 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD) daily-tables: - - schema: t_snp_data + - schema: t_std_snp_data table-name: ais_target partition-column: message_timestamp periods-ahead: 3 # 미리 생성할 일수