user service 빌드 성공

This commit is contained in:
cyjadela
2025-10-24 09:34:52 +09:00
parent 607e0ae022
commit ca88d308c8
36 changed files with 4845 additions and 1249 deletions
+15 -8
View File
@@ -8,7 +8,7 @@ spring:
datasource:
url: jdbc:${DB_KIND:postgresql}://${DB_HOST:localhost}:${DB_PORT:5432}/${DB_NAME:userdb}
username: ${DB_USERNAME:hgzerouser}
password: ${DB_PASSWORD:}
password: ${DB_PASSWORD:Hi5Jessica!}
driver-class-name: org.postgresql.Driver
hikari:
maximum-pool-size: 20
@@ -25,8 +25,13 @@ spring:
hibernate:
format_sql: true
use_sql_comments: true
dialect: org.hibernate.dialect.PostgreSQLDialect
jdbc:
time_zone: UTC
hibernate:
ddl-auto: ${JPA_DDL_AUTO:update}
database: postgresql
database-platform: org.hibernate.dialect.PostgreSQLDialect
# Redis Configuration
data:
@@ -43,13 +48,13 @@ spring:
max-wait: -1ms
database: ${REDIS_DATABASE:0}
# LDAP Configuration
ldap:
urls: ${LDAP_URLS:ldaps://ldap.example.com:636}
base: ${LDAP_BASE:dc=example,dc=com}
username: ${LDAP_USERNAME:}
password: ${LDAP_PASSWORD:}
user-dn-pattern: ${LDAP_USER_DN_PATTERN:uid={0},ou=people}
# LDAP Configuration (비활성화 for development)
# ldap:
# urls: ${LDAP_URLS:ldaps://ldap.example.com:636}
# base: ${LDAP_BASE:dc=example,dc=com}
# username: ${LDAP_USERNAME:}
# password: ${LDAP_PASSWORD:}
# user-dn-pattern: ${LDAP_USER_DN_PATTERN:uid={0},ou=people}
# Event Configuration (Azure EventHub)
cloud:
@@ -96,6 +101,8 @@ management:
enabled: true
readinessState:
enabled: true
ldap:
enabled: false
# OpenAPI Documentation
springdoc: