12345678910111213141516171819202122232425262728293031 |
- server:
- port: 8088
- servlet:
- context-path: /welampiot
- spring:
- application:
- name: welampiot
- datasource:
- # driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://139.196.213.241:3306/welampiot?characterEncoding=utf-8&useSSL=false
- username: welampiot
- password: welampiot@2023
- initialSize: 5
- minIdle: 5
- maxActive: 100
- maxWait: 60000
- #数据库连接中数据源类型
- type: com.alibaba.druid.pool.DruidDataSource
- mybatis:
- mapper-locations: classpath:/mapper/*.xml
- check-config-location: true
- type-aliases-package: com.welampiot
- debug: true
- logging:
- file:
- path: /logs/cis
- level:
- root: info
- config: classpath:logback.xml
|