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
04072071
Commit
04072071
authored
Aug 16, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改用户登录,权限分配等
parent
39713cb6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
8 deletions
+2
-8
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqConsumerTemplate.java
...ortals/xhx/queue/rabbitmq/TbRabbitMqConsumerTemplate.java
+1
-8
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
...ortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
+1
-0
No files found.
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqConsumerTemplate.java
View file @
04072071
...
@@ -36,9 +36,6 @@ public class TbRabbitMqConsumerTemplate<T extends TbQueueMsg> extends AbstractTb
...
@@ -36,9 +36,6 @@ public class TbRabbitMqConsumerTemplate<T extends TbQueueMsg> extends AbstractTb
private
Channel
channel
;
private
Channel
channel
;
private
Connection
connection
;
private
Connection
connection
;
/**
* rabbmit设置
*/
private
TbRabbitMqSettings
rabbitMqSettings
;
private
TbRabbitMqSettings
rabbitMqSettings
;
private
volatile
Set
<
String
>
queues
=
new
HashSet
<>();
private
volatile
Set
<
String
>
queues
=
new
HashSet
<>();
...
@@ -91,11 +88,7 @@ public class TbRabbitMqConsumerTemplate<T extends TbQueueMsg> extends AbstractTb
...
@@ -91,11 +88,7 @@ public class TbRabbitMqConsumerTemplate<T extends TbQueueMsg> extends AbstractTb
topicNames
.
stream
().
forEach
(
topic
->{
topicNames
.
stream
().
forEach
(
topic
->{
queues
.
add
(
topic
);
queues
.
add
(
topic
);
});
});
log
.
info
(
"doSubscribe:{}"
,
JSON
.
toJSONString
(
queues
));
// queues = partitions.stream()
// .map(TopicPartitionInfo::getFullTopicName)
// .collect(Collectors.toSet());
log
.
info
(
"doSubscribe:{},topicNames:{}"
,
JSON
.
toJSONString
(
queues
),
JSON
.
toJSONString
(
queues
));
}
}
@Override
@Override
...
...
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
View file @
04072071
...
@@ -84,6 +84,7 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
...
@@ -84,6 +84,7 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
try
{
try
{
if
(!
topicIfNotExist
)
{
if
(!
topicIfNotExist
)
{
//topic不存在创建通道队列
//topic不存在创建通道队列
log
.
info
(
"queueDeclareAdd==>exchangeName:{} topic:{}"
,
tpi
.
getExchangeName
(),
tpi
.
getTopic
());
Map
<
String
,
Object
>
args
=
new
HashMap
<>();
Map
<
String
,
Object
>
args
=
new
HashMap
<>();
args
.
put
(
"x-message-ttl"
,
Integer
.
parseInt
(
rabbitMqSettings
.
getMessageTtl
()));
args
.
put
(
"x-message-ttl"
,
Integer
.
parseInt
(
rabbitMqSettings
.
getMessageTtl
()));
channel
.
queueDeclare
(
tpi
.
getTopic
(),
true
,
false
,
false
,
args
);
channel
.
queueDeclare
(
tpi
.
getTopic
(),
true
,
false
,
false
,
args
);
...
...
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