2023-11-28 08:43:15 +08:00
|
|
|
server:
|
|
|
|
port: 8080
|
|
|
|
spring:
|
|
|
|
application:
|
|
|
|
#应用的名称,可选
|
2023-12-06 23:19:44 +08:00
|
|
|
name: FWDev
|
2023-11-28 08:43:15 +08:00
|
|
|
datasource:
|
|
|
|
druid:
|
|
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
2023-12-06 23:19:44 +08:00
|
|
|
url: jdbc:mysql://localhost:3306/fwsystem?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
|
2023-11-28 08:43:15 +08:00
|
|
|
username: root
|
|
|
|
password: 123456
|
|
|
|
mybatis-plus:
|
|
|
|
configuration:
|
|
|
|
#在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
global-config:
|
|
|
|
db-config:
|
|
|
|
id-type: ASSIGN_ID
|
|
|
|
reggie:
|
|
|
|
path: D:\img\
|