No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- server:
- port: 9900
- servlet:
- context-path: /
-
- spring:
- application:
- name: mallink
- profiles:
- active: dev
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- default-property-inclusion: non_null
- servlet:
- multipart:
- max-file-size: 2MB
- max-request-size: 2MB
- cache:
- type: REDIS
- cache-names: redis_cache #缓存的名字(可以不指定)
- redis:
- time-to-live: 60000ms #很重要,缓存的有效时间,以便缓存的过期(单位为毫秒)
- rocketmq:
- nameServer: 101.200.130.134:9876
- producer:
- retry-times-when-send-async-failed: 0
- send-msg-timeout: 300000
- compress-msg-body-over-howmuch: 4096
- max-message-size: 4194304
- retry-another-broker-when-not-store-ok: false
- retry-times-when-send-failed: 2
- rabbitmq:
- host: 101.200.130.134
- port: 5672
- username: guest
- password: guest
- publisher-confirms: true
- virtual-host: /
- # FLOWABLE
- flowable:
- async-executor-activate: false
- aop:
- proxy-target-class: true
- auto: true
- flyway:
- locations: classpath:/db/migration
- baseline-on-migrate: true
- baseline-version: 1
-
-
- # MybatisPlus
- mybatis-plus:
- mapper-locations: classpath:mapper/*Mapper.xml
- global-config:
- db-config:
- id-type: id_worker
- field-strategy: not_null
- db-type: mysql
- configuration:
- jdbc-type-for-null: 'null'
- cache-enabled: false
- call-setters-on-nulls: true
- type-aliases-package: com.iformall.domain.po
- type-enums-package: com.iformall.enums
-
- # PageHelper
- pagehelper:
- helperDialect: mysql
- reasonable: false
- supportMethodsArguments: true
- params: count=countSql
- offset-as-page-num: true
- page-size-zero: true
- row-bounds-with-count: true
-
- mapper:
- mappers:
- - com.iformall.common.CommonMapper
-
- version: @project.version@
|