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
20c7e30c
Commit
20c7e30c
authored
Jun 08, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加设备消息接收下发功能
parent
a11e2cba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
...ortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
+2
-4
No files found.
common-lib/src/main/java/com/mortals/xhx/queue/rabbitmq/TbRabbitMqProducerTemplate.java
View file @
20c7e30c
...
@@ -79,14 +79,13 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
...
@@ -79,14 +79,13 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
public
void
send
(
TopicPartitionInfo
tpi
,
T
msg
,
TbQueueCallback
callback
)
{
public
void
send
(
TopicPartitionInfo
tpi
,
T
msg
,
TbQueueCallback
callback
)
{
Boolean
topicIfNotExist
=
createTopicIfNotExist
(
tpi
);
Boolean
topicIfNotExist
=
createTopicIfNotExist
(
tpi
);
AMQP
.
BasicProperties
properties
=
new
AMQP
.
BasicProperties
().
builder
().
expiration
(
rabbitMqSettings
.
getMessageTtl
()).
build
();
AMQP
.
BasicProperties
properties
=
new
AMQP
.
BasicProperties
().
builder
().
expiration
(
rabbitMqSettings
.
getMessageTtl
()).
build
();
//properties.builder().expiration(rabbitMqSettings.getMessageTtl());
try
{
try
{
if
(!
topicIfNotExist
)
{
if
(!
topicIfNotExist
)
{
//topic不存在创建通道队列
//topic不存在创建通道队列
Map
<
String
,
Object
>
args
=
new
HashMap
<>();
Map
<
String
,
Object
>
args
=
new
HashMap
<>();
log
.
info
(
"x-message-ttl:{}"
,
rabbitMqSettings
.
getMessageTtl
());
log
.
info
(
"x-message-ttl:{}"
,
rabbitMqSettings
.
getMessageTtl
());
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
,
null
);
channel
.
queueDeclare
(
tpi
.
getTopic
(),
true
,
false
,
false
,
args
);
}
}
if
(!
innerExists
(
tpi
.
getExchangeName
(),
channel
))
{
if
(!
innerExists
(
tpi
.
getExchangeName
(),
channel
))
{
//判断交换机是否存在,如果不存在则创建后与新加入的队列绑定
//判断交换机是否存在,如果不存在则创建后与新加入的队列绑定
...
@@ -94,7 +93,6 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
...
@@ -94,7 +93,6 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
channel
.
exchangeDeclare
(
tpi
.
getExchangeName
(),
BuiltinExchangeType
.
DIRECT
,
true
,
false
,
null
);
channel
.
exchangeDeclare
(
tpi
.
getExchangeName
(),
BuiltinExchangeType
.
DIRECT
,
true
,
false
,
null
);
}
}
channel
.
queueBind
(
tpi
.
getTopic
(),
tpi
.
getExchangeName
(),
tpi
.
getTopic
());
channel
.
queueBind
(
tpi
.
getTopic
(),
tpi
.
getExchangeName
(),
tpi
.
getTopic
());
//channel.queueBind()
channel
.
basicPublish
(
tpi
.
getExchangeName
(),
tpi
.
getTopic
(),
properties
,
JSON
.
toJSONString
(
new
DefaultTbQueueMsg
(
msg
)).
getBytes
());
channel
.
basicPublish
(
tpi
.
getExchangeName
(),
tpi
.
getTopic
(),
properties
,
JSON
.
toJSONString
(
new
DefaultTbQueueMsg
(
msg
)).
getBytes
());
if
(
callback
!=
null
)
{
if
(
callback
!=
null
)
{
callback
.
onSuccess
(
null
);
callback
.
onSuccess
(
null
);
...
@@ -165,7 +163,7 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
...
@@ -165,7 +163,7 @@ public class TbRabbitMqProducerTemplate<T extends TbQueueMsg> implements TbQueue
private
Boolean
createTopicIfNotExist
(
TopicPartitionInfo
tpi
)
{
private
Boolean
createTopicIfNotExist
(
TopicPartitionInfo
tpi
)
{
if
(
topics
.
contains
(
tpi
))
{
if
(
topics
.
contains
(
tpi
))
{
log
.
info
(
"contains topc:"
,
tpi
.
getTopic
());
log
.
info
(
"contains topc:
{}
"
,
tpi
.
getTopic
());
return
true
;
return
true
;
}
}
topics
.
add
(
tpi
);
topics
.
add
(
tpi
);
...
...
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