Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6a91bfa5
authored
Jan 19, 2020
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
SQL脚本编码默认utf8mb4执行,避免小概率下容器环境中乱码问题;
parent
90d705b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
doc/XXL-JOB官方文档.md
doc/db/tables_xxl_job.sql
doc/XXL-JOB官方文档.md
View file @
6a91bfa5
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1688,6 +1688,7 @@ public ReturnT<String> execute(String param) {
...
@@ -1688,6 +1688,7 @@ public ReturnT<String> execute(String param) {
### 6.28 版本 v2.2.0 Release Notes[迭代中]
### 6.28 版本 v2.2.0 Release Notes[迭代中]
-
1、
[
迭代中
]
调度中心升级springboot2.x;因此,系统要求JDK8+;
-
1、
[
迭代中
]
调度中心升级springboot2.x;因此,系统要求JDK8+;
-
2、执行器注册默认值优化;
-
2、执行器注册默认值优化;
-
3、SQL脚本编码默认utf8mb4执行,避免小概率下容器环境中乱码问题;
### TODO LIST
### TODO LIST
...
...
doc/db/tables_xxl_job.sql
View file @
6a91bfa5
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
CREATE
database
if
NOT
EXISTS
`xxl_job`
default
character
set
utf8mb4
collate
utf8mb4_unicode_ci
;
CREATE
database
if
NOT
EXISTS
`xxl_job`
default
character
set
utf8mb4
collate
utf8mb4_unicode_ci
;
use
`xxl_job`
;
use
`xxl_job`
;
SET
NAMES
UTF8
;
SET
NAMES
utf8mb4
;
CREATE
TABLE
`xxl_job_info`
(
CREATE
TABLE
`xxl_job_info`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
...
...
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