1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- server:
- port: 8080
- spring:
- application:
- name: mask
- datasource:
- url: jdbc:mysql://localhost:3307/mask?useUnicode=true&characterEncoding=utf-8&useSSL=false
- username: root
- password: 123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- redis:
-
- database: 4
-
- host: 127.0.0.1
-
- port: 6379
-
- jms:
-
- pub-sub-domain: false
- activemq:
- user: admin
- password: admin
- broker-url: tcp://localhost:61616
- queuename: mask
- mybatis-plus:
-
- type-aliases-package: com.sw.domain
-
- mapper-locations: classpath:mapper/*.xml
-
- check-config-location: true
-
- executor-type: simple
-
- global-config:
- db-config:
- id-type: auto
-
-
- configuration:
- variables:
- nextTermDays: 90
-
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|