# ===== MSSQL 프로필 ===== # 사용법: --spring.profiles.active=prod,mssql spring: datasource: url: jdbc:sqlserver://${DB_HOST:localhost}:${DB_PORT:1433};databaseName=${DB_NAME:wbx_spring};encrypt=true;trustServerCertificate=true username: ${DB_USER:sa} password: ${DB_PASS:password} driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver hikari: maximum-pool-size: ${DB_POOL_SIZE:20} minimum-idle: 5 connection-timeout: 30000 jpa: database-platform: org.hibernate.dialect.SQLServerDialect properties: hibernate: dialect: org.hibernate.dialect.SQLServerDialect flyway: locations: classpath:db/migration/common,classpath:db/migration/mssql