14 lines
463 B
YAML
14 lines
463 B
YAML
# Copy this file to application-dev.yaml, application-test.yaml, or application-prod.yaml,
|
|
# then change spring.profiles.active in application.yaml to select the environment.
|
|
spring:
|
|
datasource:
|
|
driver-class-name: org.postgresql.Driver
|
|
url: jdbc:postgresql://<host>:<port>/<database>
|
|
username: <username>
|
|
password: <password>
|
|
|
|
mybatis-plus:
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|