配置数据库

pull/55/head
lzp 2 years ago
parent 0f867352fa
commit 3bd96d8368

@ -1,33 +1,27 @@
### web ### web
server.port=8080 server.port=8080
server.servlet.context-path=/xxl-job-admin server.servlet.context-path=/xxl-job-admin
### actuator ### actuator
management.server.servlet.context-path=/actuator management.server.servlet.context-path=/actuator
management.health.mail.enabled=false management.health.mail.enabled=false
### resources ### resources
spring.mvc.servlet.load-on-startup=0 spring.mvc.servlet.load-on-startup=0
spring.mvc.static-path-pattern=/static/** spring.mvc.static-path-pattern=/static/**
spring.resources.static-locations=classpath:/static/ spring.resources.static-locations=classpath:/static/
### freemarker ### freemarker
spring.freemarker.templateLoaderPath=classpath:/templates/ spring.freemarker.templateLoaderPath=classpath:/templates/
spring.freemarker.suffix=.ftl spring.freemarker.suffix=.ftl
spring.freemarker.charset=UTF-8 spring.freemarker.charset=UTF-8
spring.freemarker.request-context-attribute=request spring.freemarker.request-context-attribute=request
spring.freemarker.settings.number_format=0.########## spring.freemarker.settings.number_format=0.##########
### mybatis ### mybatis
mybatis.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml mybatis.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml
#mybatis.type-aliases-package=com.xxl.job.admin.core.model #mybatis.type-aliases-package=com.xxl.job.admin.core.model
### xxl-job, datasource ### xxl-job, datasource
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/xxl_job?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shanghai spring.datasource.url=jdbc:mysql://saa8yecujqrnbsst.rwlb.rds.aliyuncs.com:3306/xxl_job?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shanghai
spring.datasource.username=root spring.datasource.username=sbj6y6qgtznj78bd
spring.datasource.password=root_pwd spring.datasource.password=CALLX8e2w#HgkTxS
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
### datasource-pool ### datasource-pool
spring.datasource.type=com.zaxxer.hikari.HikariDataSource spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.hikari.minimum-idle=10 spring.datasource.hikari.minimum-idle=10
@ -39,7 +33,6 @@ spring.datasource.hikari.max-lifetime=900000
spring.datasource.hikari.connection-timeout=10000 spring.datasource.hikari.connection-timeout=10000
spring.datasource.hikari.connection-test-query=SELECT 1 spring.datasource.hikari.connection-test-query=SELECT 1
spring.datasource.hikari.validation-timeout=1000 spring.datasource.hikari.validation-timeout=1000
### xxl-job, email ### xxl-job, email
spring.mail.host=smtp.qq.com spring.mail.host=smtp.qq.com
spring.mail.port=25 spring.mail.port=25
@ -50,16 +43,12 @@ spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true spring.mail.properties.mail.smtp.starttls.required=true
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
### xxl-job, access token ### xxl-job, access token
xxl.job.accessToken=default_token xxl.job.accessToken=default_token
### xxl-job, i18n (default is zh_CN, and you can choose "zh_CN", "zh_TC" and "en") ### xxl-job, i18n (default is zh_CN, and you can choose "zh_CN", "zh_TC" and "en")
xxl.job.i18n=zh_CN xxl.job.i18n=zh_CN
## xxl-job, triggerpool max size ## xxl-job, triggerpool max size
xxl.job.triggerpool.fast.max=200 xxl.job.triggerpool.fast.max=200
xxl.job.triggerpool.slow.max=100 xxl.job.triggerpool.slow.max=100
### xxl-job, log retention days ### xxl-job, log retention days
xxl.job.logretentiondays=30 xxl.job.logretentiondays=30

Loading…
Cancel
Save