Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
X
XXL-JOB
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
靳帅
XXL-JOB
Commits
17e7dd5a
提交
17e7dd5a
authored
5月 11, 2017
作者:
xueli.xue
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
底层优化
上级
650682d2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
9 行增加
和
12 行删除
+9
-12
ExecutorRegistryThread.java
.../java/com/xxl/job/core/thread/ExecutorRegistryThread.java
+1
-1
AdminApiUtil.java
...ore/src/main/java/com/xxl/job/core/util/AdminApiUtil.java
+8
-11
没有找到文件。
xxl-job-core/src/main/java/com/xxl/job/core/thread/ExecutorRegistryThread.java
浏览文件 @
17e7dd5a
...
@@ -26,7 +26,7 @@ public class ExecutorRegistryThread extends Thread {
...
@@ -26,7 +26,7 @@ public class ExecutorRegistryThread extends Thread {
public
void
start
(
final
int
port
,
final
String
ip
,
final
String
appName
){
public
void
start
(
final
int
port
,
final
String
ip
,
final
String
appName
){
// valid
// valid
if
(
AdminApiUtil
.
allowCallApi
&&
(
appName
!=
null
&&
appName
.
trim
().
length
()>
0
)
)
{
if
(
!(
AdminApiUtil
.
allowCallApi
()
&&
(
appName
!=
null
&&
appName
.
trim
().
length
()>
0
)
)
)
{
logger
.
warn
(
">>>>>>>>>>>> xxl-job, executor registry config fail"
);
logger
.
warn
(
">>>>>>>>>>>> xxl-job, executor registry config fail"
);
return
;
return
;
}
}
...
...
xxl-job-core/src/main/java/com/xxl/job/core/util/AdminApiUtil.java
浏览文件 @
17e7dd5a
...
@@ -28,30 +28,27 @@ public class AdminApiUtil {
...
@@ -28,30 +28,27 @@ public class AdminApiUtil {
public
static
final
String
REGISTRY
=
"/api/registry"
;
public
static
final
String
REGISTRY
=
"/api/registry"
;
private
static
List
<
String
>
adminAddressList
=
null
;
private
static
List
<
String
>
adminAddressList
=
null
;
public
static
boolean
allowCallApi
=
true
;
public
static
void
init
(
String
adminAddresses
){
public
static
void
init
(
String
adminAddresses
){
// admin assress list
// admin assress list
if
(
adminAddresses
!=
null
)
{
if
(
adminAddresses
!=
null
)
{
Set
<
String
>
adminAddressSet
=
new
HashSet
<
String
>();
Set
<
String
>
adminAddressSet
=
new
HashSet
<
String
>();
for
(
String
adminAddressItem:
adminAddresses
.
split
(
","
))
{
for
(
String
adminAddressItem:
adminAddresses
.
split
(
","
))
{
if
(
adminAddressItem
.
trim
().
length
()>
0
&&
!
adminAddressSet
.
contains
(
adminAddressItem
)
)
{
if
(
adminAddressItem
.
trim
().
length
()>
0
)
{
adminAddressSet
.
add
(
adminAddressItem
);
adminAddressSet
.
add
(
adminAddressItem
);
}
}
}
}
if
(
adminAddressSet
==
null
||
adminAddressSet
.
size
()==
0
)
{
adminAddressList
=
new
ArrayList
<
String
>(
adminAddressSet
);
adminAddressList
=
new
ArrayList
<
String
>(
adminAddressSet
);
}
}
}
// parse
allowCallApi
=
(
adminAddressList
!=
null
&&
adminAddressList
.
size
()>
0
);
}
}
public
static
boolean
allowCallApi
(){
boolean
allowCallApi
=
(
adminAddressList
!=
null
&&
adminAddressList
.
size
()>
0
);
return
allowCallApi
;
}
public
static
ReturnT
<
String
>
callApiFailover
(
String
subUrl
,
Object
requestObj
)
throws
Exception
{
public
static
ReturnT
<
String
>
callApiFailover
(
String
subUrl
,
Object
requestObj
)
throws
Exception
{
if
(!
allowCallApi
)
{
if
(!
allowCallApi
()
)
{
return
new
ReturnT
<
String
>(
ReturnT
.
FAIL_CODE
,
"allowCall
back
fail."
);
return
new
ReturnT
<
String
>(
ReturnT
.
FAIL_CODE
,
"allowCall
Api
fail."
);
}
}
for
(
String
adminAddress:
adminAddressList
)
{
for
(
String
adminAddress:
adminAddressList
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论