mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-05 10:05:33 +08:00
后台目录结构大调整,让结构更清晰
This commit is contained in:
@ -0,0 +1,77 @@
|
||||
server:
|
||||
port: 9080
|
||||
servlet:
|
||||
context-path: /xxl-job-admin
|
||||
#数据源配置
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:mysql://jeecg-boot-mysql:3306/xxl_job?Unicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
||||
username: ${MYSQL-USER:root}
|
||||
password: ${MYSQL-PWD:root}
|
||||
driver-class-name: com.mysql.jdbc.Driver
|
||||
type: com.zaxxer.hikari.HikariDataSource
|
||||
hikari:
|
||||
minimum-idle: 10
|
||||
maximum-pool-size: 30
|
||||
auto-commit: true
|
||||
idle-timeout: 30000
|
||||
pool-name: HikariCP
|
||||
max-lifetime: 900000
|
||||
connection-timeout: 10000
|
||||
connection-test-query: SELECT 1
|
||||
#邮箱配置
|
||||
mail:
|
||||
host: smtphz.qiye.163.com
|
||||
port: 994
|
||||
username: zhuwei@aboatedu.com
|
||||
password: zwass1314
|
||||
properties:
|
||||
mail:
|
||||
smtp:
|
||||
auth: true
|
||||
starttls:
|
||||
enable: true
|
||||
required: true
|
||||
socketFactory:
|
||||
class: javax.net.ssl.SSLSocketFactory
|
||||
#MVC配置
|
||||
mvc:
|
||||
servlet:
|
||||
load-on-startup: 0
|
||||
static-path-pattern: /static/**
|
||||
resources:
|
||||
static-locations: classpath:/static/
|
||||
#freemarker配置
|
||||
freemarker:
|
||||
templateLoaderPath=classpath: /templates/
|
||||
suffix: .ftl
|
||||
charset: UTF-8
|
||||
request-context-attribute: request
|
||||
settings:
|
||||
number_format: 0.##########
|
||||
#通用配置,开放端点
|
||||
management:
|
||||
server:
|
||||
servlet:
|
||||
context-path: /actuator
|
||||
health:
|
||||
mail:
|
||||
enabled: false
|
||||
#mybatis配置
|
||||
mybatis:
|
||||
mapper-locations: classpath:/mybatis-mapper/*Mapper.xml
|
||||
#XXL-job配置
|
||||
xxl:
|
||||
job:
|
||||
login:
|
||||
username: admin
|
||||
password: 123456
|
||||
accessToken:
|
||||
i18n: zh_CN
|
||||
#触发池
|
||||
triggerpool:
|
||||
fast:
|
||||
max: 200
|
||||
slow:
|
||||
max: 100
|
||||
logretentiondays: 30
|
||||
Reference in New Issue
Block a user