mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
28 lines
649 B
YAML
28 lines
649 B
YAML
spring:
|
|
datasource:
|
|
driver-class-name: org.h2.Driver
|
|
url: jdbc:h2:mem:test
|
|
username: root
|
|
password: test
|
|
sql:
|
|
init:
|
|
schema-locations: classpath:db/schema.sql
|
|
data-locations: classpath:db/data.sql
|
|
|
|
mybatis-plus:
|
|
typeEnumsPackage: com.github.yulichang.test
|
|
global-config:
|
|
db-config:
|
|
logic-delete-field: del
|
|
logic-delete-value: true
|
|
logic-not-delete-value: false
|
|
banner: true
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
mybatis-plus-join:
|
|
# 打印 mybatis plus join banner
|
|
banner: true
|
|
sub-table-logic: true
|
|
ms-cache: true
|
|
logic-del-type: where |