mitao
9 天以前 78bfb29d03a127cd6961ad5e99a396ec8f4e8668
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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