1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- server:
- tomcat:
- uri-encoding: UTF-8
- max-threads: 1000
- min-spare-threads: 30
- port: 8080
- connection-timeout: 5000ms
- servlet:
- context-path: /renren-fast
- spring:
-
- profiles:
- active: dev
-
- jackson:
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- enabled: true
- redis:
- open: false
- database: 0
- host: localhost
- port: 6379
- password:
- timeout: 6000ms
- jedis:
- pool:
- max-active: 1000
- max-wait: -1ms
- max-idle: 10
- min-idle: 5
- mvc:
- throw-exception-if-no-handler-found: true
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
-
- typeAliasesPackage: io.renren.modules.*.entity
- global-config:
-
- db-config:
-
- id-type: AUTO
-
- field-strategy: NOT_NULL
-
- column-underline: true
- logic-delete-value: -1
- logic-not-delete-value: 0
- banner: false
-
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- call-setters-on-nulls: true
- jdbc-type-for-null: 'null'
- renren:
- redis:
- open: false
- shiro:
- redis: false
-
- jwt:
-
- secret: f4e2e52034348f86b67cde581c0f9eb5[www.renren.io]
-
- expire: 604800
- header: token
|