server:
|
port: 8080
|
|
spring:
|
main:
|
allow-circular-references: true
|
allow-bean-definition-overriding: true
|
|
datasource:
|
url: jdbc:mysql://172.192.3.1:3306/canlian?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
username: remote
|
password: CanLian@2025.
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
mybatis-plus:
|
#mapper配置文件
|
mapper-locations: classpath*:/mapper/*.xml
|
|
type-aliases-package: com.cl.pojo.entity
|
configuration:
|
#开启驼峰命名
|
map-underscore-to-camel-case: true
|
# 开启SQL日志
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
#jwt:
|
# secret-key: xx
|
# ttl: 7200000
|
# token-name: Authorization
|