19 lines
488 B
YAML
19 lines
488 B
YAML
spring:
|
|
application:
|
|
name: api
|
|
main:
|
|
banner-mode: log
|
|
datasource:
|
|
url: jdbc:log4jdbc:mariadb://${DB_HOST}:${DB_PORT}/${DB_NAME}?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Seoul&connectionCollation=utf8mb4_unicode_ci
|
|
username: ${DB_USERNAME}
|
|
password: ${DB_PASSWORD}
|
|
driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
|
|
|
logging:
|
|
config: classpath:logback-pjt.xml
|
|
|
|
springdoc:
|
|
api-docs:
|
|
enabled: true
|
|
swagger-ui:
|
|
enabled: true |