wl
2022-11-16 c590aaeca3e0a066016d2ff2c7c4cf96a7ca446f
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
28
29
30
31
32
33
server:
  port: 7070
  # 请求头最大大小 10MB
  max-http-header-size: 10485760
  servlet:
    encoding:
      charset: UTF-8
spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/news_website?useSSL=false&useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC
    username: root
    password: 123456
  jackson:
    # 使用24小时的时间格式
    default-property-inclusion: NON_NULL
    # 设置时区为东八区
    time-zone: GMT+8
    date-format: yyyy-MM-dd
  http:
  servlet:
    multipart:
      max-file-size: 10MB
      max-request-size: 10MB
 
mybatis-plus:
  # 枚举类所在包
  type-enums-package: com.kj.enums
  configuration:
    # 开启驼峰命名规则
    map-underscore-to-camel-case: true
    # 枚举映射
    default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler