1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- server:
- port: 9095
- servlet:
- encoding:
- charset: UTF-8
- force: true
- enabled: true
- # servlet:
- # context-path: /business
- spring:
- application:
- name: aj-report
- # cloud:
- # nacos:
- # server-addr: 10.108.26.121:8848,10.108.26.145:8848
- # username: gaea
- # password: p@ss1234
- # config:
- # namespace: 5c6b6687-ad43-450f-88b6-e704ff78d83f
- # file-extension: yaml
- # discovery:
- # namespace: 5c6b6687-ad43-450f-88b6-e704ff78d83f
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- messages:
- basename: i18n/messages
- datasource:
- url: jdbc:mysql://10.108.26.197:3306/aj_report?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&useSSL=false
- username: root
- password: appuser@anji
- # 禁用redis,使用ehcache
- # redis:
- # host: 10.108.26.197
- # port: 6379
- # password: appuser@anji
- # database: 1
- flyway:
- baseline-on-migrate: true
- #数据库连接配置
- url: ${spring.datasource.url}
- user: ${spring.datasource.username}
- password: ${spring.datasource.password}
- placeholder-replacement: false
- init-sqls:
- - CREATE DATABASE IF NOT EXISTS `aj_report` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
- generator:
- enabled: true
- workspace: /workspace/gaea
- templatePath: template
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- call-setters-on-nulls: true
- mapperLocations:
- - classpath*:/mapper/**/*.xml
- - classpath*:/modeler-mybatis-mappings/**/*.xml
- management:
- endpoints:
- web:
- base-path: /
- logging:
- config: classpath:logback.xml
- file:
- dist-path: /app/disk/upload/
- white-list: .png|.jpg|.gif|.icon|.pdf|.xlsx|.xls|.csv|.mp4|.avi
- excelSuffix: .xlsx|.xls|.csv
- downloadPath: http://10.108.26.197:9095/file/download
|