Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xxl-job-admin
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wengbinbin
xxl-job-admin
Commits
99935383
Commit
99935383
authored
Jan 14, 2020
by
wengbinbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增,线上配置
parent
f6654fe1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
96 additions
and
29 deletions
+96
-29
README
README
+0
-0
application-prod.properties
src/main/resources/application-prod.properties
+47
-0
application-test.properties
src/main/resources/application-test.properties
+47
-0
application.properties
src/main/resources/application.properties
+2
-29
No files found.
README
0 → 100644
View file @
99935383
src/main/resources/application-prod.properties
0 → 100644
View file @
99935383
### web
server.port
=
8093
server.context-path
=
/xxl-job-admin
### actuator
management.context-path
=
/actuator
management.health.mail.enabled
=
false
### resources
spring.mvc.static-path-pattern
=
/static/**
spring.resources.static-locations
=
classpath:/static/
### freemarker
spring.freemarker.templateLoaderPath
=
classpath:/templates/
spring.freemarker.suffix
=
.ftl
spring.freemarker.charset
=
UTF-8
spring.freemarker.request-context-attribute
=
request
spring.freemarker.settings.number_format
=
0.##########
### mybatis
mybatis.mapper-locations
=
classpath:/mybatis-mapper/*Mapper.xml
### xxl-job, datasource
spring.datasource.url
=
jdbc:mysql://120.26.213.52:3306/xxl_job?Unicode=true&characterEncoding=UTF-8
spring.datasource.username
=
ydl
spring.datasource.password
=
tt12345
spring.datasource.driver-class-name
=
com.mysql.jdbc.Driver
spring.datasource.type
=
org.apache.tomcat.jdbc.pool.DataSource
spring.datasource.tomcat.max-wait
=
10000
spring.datasource.tomcat.max-active
=
30
spring.datasource.tomcat.test-on-borrow
=
true
spring.datasource.tomcat.validation-query
=
SELECT 1
spring.datasource.tomcat.validation-interval
=
30000
### xxl-job email
spring.mail.host
=
smtp.qq.com
spring.mail.port
=
25
spring.mail.username
=
xxx@qq.com
spring.mail.password
=
xxx
spring.mail.properties.mail.smtp.auth
=
true
spring.mail.properties.mail.smtp.starttls.enable
=
true
spring.mail.properties.mail.smtp.starttls.required
=
true
spring.mail.properties.mail.smtp.socketFactory.class
=
javax.net.ssl.SSLSocketFactory
### xxl-job, access token
xxl.job.accessToken
=
### xxl-job, i18n (default empty as chinese, "en" as english)
xxl.job.i18n
=
## xxl-job, triggerpool max size
xxl.job.triggerpool.fast.max
=
200
xxl.job.triggerpool.slow.max
=
100
### xxl-job, log retention days
xxl.job.logretentiondays
=
30
src/main/resources/application-test.properties
0 → 100644
View file @
99935383
application.properties
### web
server.port
=
8093
server.context-path
=
/xxl-job-admin
### actuator
management.context-path
=
/actuator
management.health.mail.enabled
=
false
### resources
spring.mvc.static-path-pattern
=
/static/**
spring.resources.static-locations
=
classpath:/static/
### freemarker
spring.freemarker.templateLoaderPath
=
classpath:/templates/
spring.freemarker.suffix
=
.ftl
spring.freemarker.charset
=
UTF-8
spring.freemarker.request-context-attribute
=
request
spring.freemarker.settings.number_format
=
0.##########
### mybatis
mybatis.mapper-locations
=
classpath:/mybatis-mapper/*Mapper.xml
### xxl-job, datasource
spring.datasource.url
=
jdbc:mysql://120.26.213.52:3306/xxl_job?Unicode=true&characterEncoding=UTF-8
spring.datasource.username
=
ydl
spring.datasource.password
=
tt12345
spring.datasource.driver-class-name
=
com.mysql.jdbc.Driver
spring.datasource.type
=
org.apache.tomcat.jdbc.pool.DataSource
spring.datasource.tomcat.max-wait
=
10000
spring.datasource.tomcat.max-active
=
30
spring.datasource.tomcat.test-on-borrow
=
true
spring.datasource.tomcat.validation-query
=
SELECT 1
spring.datasource.tomcat.validation-interval
=
30000
### xxl-job email
spring.mail.host
=
smtp.qq.com
spring.mail.port
=
25
spring.mail.username
=
xxx@qq.com
spring.mail.password
=
xxx
spring.mail.properties.mail.smtp.auth
=
true
spring.mail.properties.mail.smtp.starttls.enable
=
true
spring.mail.properties.mail.smtp.starttls.required
=
true
spring.mail.properties.mail.smtp.socketFactory.class
=
javax.net.ssl.SSLSocketFactory
### xxl-job, access token
xxl.job.accessToken
=
### xxl-job, i18n (default empty as chinese, "en" as english)
xxl.job.i18n
=
## xxl-job, triggerpool max size
xxl.job.triggerpool.fast.max
=
200
xxl.job.triggerpool.slow.max
=
100
### xxl-job, log retention days
xxl.job.logretentiondays
=
30
src/main/resources/application.properties
View file @
99935383
### web
### web
server.port
=
8093
server.port
=
8093
server.context-path
=
/xxl-job-admin
server.context-path
=
/xxl-job-admin
spring.profiles.active
=
test
### actuator
### actuator
management.context-path
=
/actuator
management.context-path
=
/actuator
management.health.mail.enabled
=
false
management.health.mail.enabled
=
false
...
@@ -15,32 +17,3 @@ spring.freemarker.request-context-attribute=request
...
@@ -15,32 +17,3 @@ 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
### xxl-job, datasource
spring.datasource.url
=
jdbc:mysql://120.26.213.52:3306/xxl_job?Unicode=true&characterEncoding=UTF-8
spring.datasource.username
=
ydl
spring.datasource.password
=
tt12345
spring.datasource.driver-class-name
=
com.mysql.jdbc.Driver
spring.datasource.type
=
org.apache.tomcat.jdbc.pool.DataSource
spring.datasource.tomcat.max-wait
=
10000
spring.datasource.tomcat.max-active
=
30
spring.datasource.tomcat.test-on-borrow
=
true
spring.datasource.tomcat.validation-query
=
SELECT 1
spring.datasource.tomcat.validation-interval
=
30000
### xxl-job email
spring.mail.host
=
smtp.qq.com
spring.mail.port
=
25
spring.mail.username
=
xxx@qq.com
spring.mail.password
=
xxx
spring.mail.properties.mail.smtp.auth
=
true
spring.mail.properties.mail.smtp.starttls.enable
=
true
spring.mail.properties.mail.smtp.starttls.required
=
true
spring.mail.properties.mail.smtp.socketFactory.class
=
javax.net.ssl.SSLSocketFactory
### xxl-job, access token
xxl.job.accessToken
=
### xxl-job, i18n (default empty as chinese, "en" as english)
xxl.job.i18n
=
## xxl-job, triggerpool max size
xxl.job.triggerpool.fast.max
=
200
xxl.job.triggerpool.slow.max
=
100
### xxl-job, log retention days
xxl.job.logretentiondays
=
30
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment