Test01/01_springboot_part/src/main/resources/application.yml

23 lines
603 B
YAML
Raw Normal View History

2025-05-21 19:49:33 +08:00
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