1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # ####################################################################################################
- # 服务端配置
- server.port=9099
- server.servlet.context-path=/
- server.tomcat.uri-encoding=UTF-8
- server.tomcat.max-http-post-size=-1
- server.connection-timeout=18000000s
- # ####################################################################################################
- # thymeleaf 配置
- spring.thymeleaf.cache=false
- spring.thymeleaf.jackson.time-zone=GMT+8
- spring.thymeleaf.jackson.date-format=yyyy-MM-dd HH:mm:ss
- # ####################################################################################################
- # 数据源配置
- spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
- #spring.datasource.url=jdbc:mysql://118.190.47.230:3306/cloud_model?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8
- spring.datasource.url=jdbc:mysql://47.100.37.243:7644/cloud_model?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8
- spring.datasource.username=root
- spring.datasource.password=Hssx2018.!
- #spring.datasource.druid.test-on-borrow=true
- #spring.datasource.druid.test-while-idle=true
- # ####################################################################################################
- # MyBatis 配置
- mybatis.mapper-locations=mappers/*Mapper.xml
- mybatis.type-aliases-package=com.hssx.cloudmodel.entity/*
- # 控制台输出SQL语句
- logging.level.com.hssx.cloudmodel.mapper = debug
- # ####################################################################################################
- #配置Session
- spring.session.store-type=none
- # ####################################################################################################
- #成功页面跳转
- spring.thymeleaf.prefix=classpath:/static/
- ######################################################################################################
- ## redis 配置
- #spring.redis.host=localhost
- #spring.redis.port=6379
- ######################################################################################################
- # 文件上传路径
- upload.path=D:/mould/upload/
- ######################################################################################################
- # 文件下载路径
- download.path=D:/mould/download/
- # 邀请人员链接前缀
- invitation.url.prefix=https://localhost:8090/#/invite/
- # 备用密码
- sysPwd=yunmo
- #######################################################################################################
- # 配置上传文件的大小设置
- # Single file max size 即单个文件大小
- spring.servlet.multipart.max-file-size=10000MB
- spring.servlet.multipart.max-request-size=10000MB
- ##################SpringBoot连接池配置########
- spring.datasource.hikari.minimum-idle=3
- spring.datasource.hikari.maximum-pool-size=10
- spring.datasource.hikari.max-lifetime =30000
- spring.datasource.hikari.connection-test-query=SELECT 1
- logging.path=E:/
|