Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
device-new-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
device-new-platform
Commits
39713cb6
Commit
39713cb6
authored
Aug 16, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改用户登录,权限分配等
parent
599355ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
6 deletions
+40
-6
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
...ortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
+39
-5
device-manager/src/test/java/com/mortals/httpclient/device/DeviceController.http
.../java/com/mortals/httpclient/device/DeviceController.http
+1
-1
No files found.
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
View file @
39713cb6
...
@@ -168,12 +168,46 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
...
@@ -168,12 +168,46 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
}
}
private
Boolean
createTopicIfNotExist
(
TopicPartitionInfo
tpi
)
{
private
Boolean
createTopicIfNotExist
(
TopicPartitionInfo
tpi
)
{
if
(
topics
.
contains
(
tpi
))
{
//判断绑定的交换机与队列是否相同,如果不同返回false
log
.
debug
(
"contains topc:{}"
,
tpi
.
getTopic
());
TopicPartitionInfo
topicPartitionInfo
=
topics
.
stream
()
return
true
;
.
filter
(
f
->
f
.
getTopic
().
equals
(
tpi
.
getTopic
())
&&
f
.
getExchangeName
().
equals
(
tpi
.
getExchangeName
()))
.
findAny
().
orElseGet
(()
->
null
);
if
(
ObjectUtils
.
isEmpty
(
topicPartitionInfo
))
{
//exchange queue都不同
topics
.
add
(
tpi
);
return
false
;
}
else
{
//queue相同 exchange不同
TopicPartitionInfo
temp
=
topics
.
stream
()
.
filter
(
f
->
f
.
getTopic
().
equals
(
tpi
.
getTopic
()))
.
findAny
().
orElseGet
(()
->
null
);
if
(!
ObjectUtils
.
isEmpty
(
temp
)){
//queue相同 exchange不同 需重新绑定
topics
.
remove
(
temp
);
topics
.
add
(
tpi
);
return
false
;
}
else
{
return
true
;
}
}
}
topics
.
add
(
tpi
);
//
return
false
;
// if (topics.contains(tpi)) {
// //topic相同,exchange可能不同
// TopicPartitionInfo topicPartitionInfo = topics.stream().filter(f -> f.getTopic().equals(tpi.getTopic()) && f.getExchangeName().equals(tpi.getExchangeName())).findAny().orElseGet(() -> null);
// if (ObjectUtils.isEmpty(topicPartitionInfo)) {
// //exchange不同
// topics.add(tpi);
// //topics.remove()
// return true;
// }
//
// log.debug("contains topc:{}", tpi.getTopic());
// return true;
// }
// topics.add(tpi);
// return false;
}
}
private
boolean
innerExists
(
String
exchangeName
,
Channel
outerChannel
)
{
private
boolean
innerExists
(
String
exchangeName
,
Channel
outerChannel
)
{
...
...
device-manager/src/test/java/com/mortals/httpclient/device/DeviceController.http
View file @
39713cb6
...
@@ -147,7 +147,7 @@ Content-Type: application/json
...
@@ -147,7 +147,7 @@ Content-Type: application/json
Authorization: {{authToken}}
Authorization: {{authToken}}
{
{
"deviceCode": "
94-DE-80-D5-3D-63
",
"deviceCode": "
18-93-7F-C0-AD-B5
",
"action": "upload"
"action": "upload"
}
}
...
...
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