23 lines
603 B
YAML
23 lines
603 B
YAML
|
spring:
|
||
|
banner:
|
||
|
charset: utf-8
|
||
|
location: classpath:banner.txt
|
||
|
datasource:
|
||
|
url: jdbc:mysql://localhost:3306/mybatis-example
|
||
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
username: root
|
||
|
password: 735289578
|
||
|
data:
|
||
|
redis:
|
||
|
host: 192.168.6.100
|
||
|
port: 6379
|
||
|
mybatis:
|
||
|
mapper-locations: classpath:/mapper/*.xml
|
||
|
type-aliases-package: com.atguigu.java.pojo
|
||
|
configuration:
|
||
|
map-underscore-to-camel-case: true
|
||
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
auto-mapping-behavior: full
|
||
|
lazy-loading-enabled: true
|
||
|
aggressive-lazy-loading: false
|