98 lines
2.5 KiB
YAML
98 lines
2.5 KiB
YAML
spring:
|
|
config:
|
|
activate:
|
|
on-profile: local
|
|
|
|
jpa:
|
|
show-sql: false
|
|
hibernate:
|
|
ddl-auto: update # 로컬만 완화(시킬려면 update으로 변경)
|
|
properties:
|
|
hibernate:
|
|
default_batch_fetch_size: 100 # ✅ 성능 - N+1 쿼리 방지
|
|
order_updates: true # ✅ 성능 - 업데이트 순서 정렬로 데드락 방지
|
|
use_sql_comments: true # ⚠️ 선택 - SQL에 주석 추가 (디버깅용)
|
|
format_sql: true # ⚠️ 선택 - SQL 포맷팅 (가독성)
|
|
|
|
datasource:
|
|
#url: jdbc:postgresql://192.168.2.127:15432/kamco_cds
|
|
url: jdbc:postgresql://localhost:25432/kamco_cds
|
|
username: kamco_cds
|
|
password: kamco_cds_Q!W@E#R$
|
|
hikari:
|
|
minimum-idle: 1
|
|
maximum-pool-size: 5
|
|
|
|
data:
|
|
redis:
|
|
#host: 192.168.2.109
|
|
#port: 6379
|
|
#password: kamco
|
|
host: localhost
|
|
port: 6379
|
|
password:
|
|
|
|
servlet:
|
|
multipart:
|
|
enabled: true
|
|
max-file-size: 4GB
|
|
max-request-size: 4GB
|
|
file-size-threshold: 10MB
|
|
|
|
server:
|
|
tomcat:
|
|
max-swallow-size: 4GB
|
|
max-http-form-post-size: 4GB
|
|
|
|
jwt:
|
|
secret: "kamco_token_9b71e778-19a3-4c1d-97bf-2d687de17d5b"
|
|
access-token-validity-in-ms: 86400000 # 1일
|
|
refresh-token-validity-in-ms: 604800000 # 7일
|
|
|
|
token:
|
|
refresh-cookie-name: kamco-local # 개발용 쿠키 이름
|
|
refresh-cookie-secure: false # 로컬 http 테스트면 false
|
|
|
|
springdoc:
|
|
swagger-ui:
|
|
persist-authorization: true # 스웨거 새로고침해도 토큰 유지, 로컬스토리지에 저장
|
|
|
|
logging:
|
|
level:
|
|
org.hibernate.SQL: debug
|
|
org.hibernate.orm.jdbc.bind: trace
|
|
|
|
mapsheet:
|
|
upload:
|
|
skipGdalValidation: true
|
|
shp:
|
|
baseurl: /Users/bokmin/detect/result
|
|
|
|
file:
|
|
sync-root-dir: D:/kamco-nfs/images/
|
|
#sync-root-dir: /kamco-nfs/images/
|
|
sync-tmp-dir: ${file.sync-root-dir}/tmp
|
|
sync-file-extention: tfw,tif
|
|
sync-auto-exception-start-year: 2025
|
|
sync-auto-exception-before-year-cnt: 3
|
|
|
|
dataset-dir: D:/kamco-nfs/dataset/
|
|
#dataset-dir: /kamco-nfs/dataset/export/
|
|
dataset-tmp-dir: ${file.dataset-dir}tmp/
|
|
|
|
model-dir: D:/kamco-nfs/ckpt/model/
|
|
#model-dir: /kamco-nfs/ckpt/model/
|
|
model-tmp-dir: ${file.model-dir}tmp/
|
|
model-file-extention: pth,json,py
|
|
|
|
inference:
|
|
url: http://10.100.0.11:8000/jobs
|
|
batch-url: http://10.100.0.11:8000/batches
|
|
geojson-dir: /kamco-nfs/requests/
|
|
jar-path: jar/makeshp-1.0.0.jar
|
|
|
|
innopam:
|
|
#url: http://localhost:8080
|
|
url: http://192.168.2.129:5301
|
|
mast : ${innopam.url}/api/kcd/cdi/chn/mast
|