1234567891011121314151617181920 |
- spring:
- cloud:
- nacos:
- server-addr: localhost:8848
- application:
- name: wareService
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- #MySQL配置
- driverClassName: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://47.92.248.244:3306/gulimall_wms?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai
- username: root
- password: Y@l170513
- mybatis-plus:
- mapper-locations: classpath:/mapper/**/*.xml
- global-config:
- db-config:
- id-type: auto
- server:
- port: 11000
|