You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.3 KiB
77 lines
2.3 KiB
#服务器端口 |
|
server: |
|
port: 8216 |
|
|
|
#数据源配置 |
|
spring: |
|
#排除DruidDataSourceAutoConfigure |
|
autoconfigure: |
|
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure |
|
datasource: |
|
url: jdbc:mysql://175.6.40.67:5816/dev_hzims_ticket?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&tinyInt1isBit=false&allowMultiQueries=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true |
|
username: root |
|
password: 123 |
|
|
|
redis: |
|
##redis 单机环境配置 |
|
host: 192.168.1.68 |
|
port: 3577 |
|
password: 1qaz2WSX@redis |
|
database: 0 |
|
ssl: false |
|
|
|
xxl: |
|
job: |
|
accessToken: '' |
|
admin: |
|
addresses: http://192.168.1.68:7009/xxl-job-admin |
|
executor: |
|
appname: hzims-ticket |
|
ip: 192.168.1.68 |
|
logpath: /data/applogs/xxl-job/jobhandler |
|
logretentiondays: -1 |
|
port: 28601 |
|
|
|
#mybatis-plus配置 |
|
mybatis-plus: |
|
mapper-locations: classpath:com/hnac/hzims/**/mapper/**/*Mapper.xml |
|
#实体扫描,多个package用逗号或者分号分隔 |
|
typeAliasesPackage: com.hnac.hzims.**.entity |
|
|
|
#swagger扫描路径配置 |
|
swagger: |
|
base-packages: |
|
- org.springbalde |
|
- com.hnac |
|
|
|
#oss配置 |
|
oss: |
|
enable: true |
|
name: minio |
|
tenant-mode: true |
|
endpoint: http://175.6.40.67:2999 |
|
access-key: minioadmin |
|
secret-key: minioadmin |
|
bucket-name: dev200000 |
|
|
|
hzims: |
|
tenantId: 200000 |
|
ticket: |
|
path: |
|
pdf: |
|
firstWorkTicketTemplate: "F:/pdf/第一种电气工作票.pdf" # windows |
|
# firstworkTicketTemplate: "/data/hzims/ticket/pdf/template/第一种电气工作票.pdf" # linux |
|
operateTicketTemplate: "F:/pdf/操作票.pdf" # windows |
|
# operateTicketTemplate: "/data/hzims/ticket/pdf/template/操作票.pdf" # linux |
|
savePath: "F:/文档/华自/path/pdf/save/" |
|
img: |
|
stampImage: "F:/pdf/盖章.jpeg" # windows |
|
word: |
|
templatePath: "F:/文档/华自/path/word/template/" |
|
savePath: "F:/文档/华自/path/word/save/" |
|
xlsx: |
|
savePath: "F:/文档/华自/path/word/save/" #windows |
|
standard-flow-key: standardTicketFlow |
|
first-work-flow-key: firstWorkTicket |
|
first-work-flow-key-new: newFirstWorkTicket |
|
app-config-business-key: ticket_invalid
|
|
|