Explain Line change - Daniel C No.9

This commit is contained in:
sanghyeonhd
2025-11-28 17:00:58 +09:00
parent 4f96855335
commit f83f0b0713
3 changed files with 4 additions and 5 deletions

View File

@@ -433,5 +433,4 @@ public class GeometryConversionService {
return processedIds; return processedIds;
} }
} }

View File

@@ -26,8 +26,8 @@ public interface MapSheetLearnDataGeomRepository
/** 지오메트리 타입별 조회 */ /** 지오메트리 타입별 조회 */
List<MapSheetLearnDataGeomEntity> findByGeoType(String geoType); List<MapSheetLearnDataGeomEntity> findByGeoType(String geoType);
/** 데이터 UID로 기존 지오메트리 데이터 삭제 (재생성 전에 사용) */ /** 데이터 UID로 기존 지오메트리 데이터 삭제 (재생성 전에 사용) */
void deleteByDataUid(Long dataUid); void deleteByDataUid(Long dataUid);
/** PostGIS 함수를 사용하여 geometry 데이터를 직접 삽입 ST_SetSRID(ST_GeomFromGeoJSON(...), 5186) 형식으로 저장 */ /** PostGIS 함수를 사용하여 geometry 데이터를 직접 삽입 ST_SetSRID(ST_GeomFromGeoJSON(...), 5186) 형식으로 저장 */
@Modifying @Modifying

View File

@@ -22,7 +22,7 @@ spring:
leak-detection-threshold: 60000 leak-detection-threshold: 60000
jpa: jpa:
hibernate: hibernate:
ddl-auto: update # 스키마 검증만 수행, 자동 변경하지 않음 (안전) ddl-auto: update # 테이블이 없으면 생성, 있으면 업데이트
properties: properties:
hibernate: hibernate:
jdbc: jdbc:
@@ -65,7 +65,7 @@ geojson:
error-directory: ~/geojson/error error-directory: ~/geojson/error
temp-directory: /tmp/geojson_extract temp-directory: /tmp/geojson_extract
cron-expression: "0/30 * * * * *" # 매 30초마다 실행 cron-expression: "0/30 * * * * *" # 매 30초마다 실행
supported-extensions: supported-extensions:
- zip - zip
- tar - tar
- tar.gz - tar.gz