31 lines
676 B
YAML
31 lines
676 B
YAML
server:
|
|
port: 8082
|
|
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.oceanbase.jdbc.Driver
|
|
url: jdbc:oceanbase://localhost:2881/tacit?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
username: root
|
|
password: password
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
mapper-locations: classpath*:mapper/**/*.xml
|
|
type-aliases-package: com.tacit.admin.entity
|
|
|
|
# Swagger Configuration
|
|
springdoc:
|
|
api-docs:
|
|
enabled: true
|
|
path: /v3/api-docs
|
|
swagger-ui:
|
|
enabled: true
|
|
path: /swagger-ui.html
|
|
|
|
# Logging Configuration
|
|
logging:
|
|
level:
|
|
com.tacit.admin: debug
|