Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
15328cf4
Commit
15328cf4
authored
Sep 18, 2020
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改MQ请求尸体,防止出错
parent
f5175126
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
20 deletions
+26
-20
QueueServiceImpl.java
...ava/com/yanzuoguang/mq/service/impl/QueueServiceImpl.java
+26
-20
No files found.
yzg-util-mq/src/main/java/com/yanzuoguang/mq/service/impl/QueueServiceImpl.java
View file @
15328cf4
...
...
@@ -4,6 +4,7 @@ import com.yanzuoguang.mq.dao.BeanDao;
import
com.yanzuoguang.mq.service.QueueService
;
import
com.yanzuoguang.mq.vo.QueueVo
;
import
com.yanzuoguang.util.helper.StringHelper
;
import
com.yanzuoguang.util.thread.ThreadHelper
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
...
...
@@ -37,26 +38,31 @@ public class QueueServiceImpl implements QueueService {
private
void
initBean
(
QueueVo
vo
)
{
vo
.
check
();
// 创建死信队列
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
()))
{
beanDao
.
createQueue
(
vo
.
getDedQueueName
());
}
// 创建死信交换器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedExchangeName
()))
{
beanDao
.
createExchange
(
vo
.
getDedExchangeName
());
}
// 关联死信队列、交换器、路由器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
()))
{
beanDao
.
createBinding
(
vo
.
getDedExchangeName
(),
vo
.
getDedQueueName
(),
vo
.
getDedRouteKey
());
}
// 创建当前队列,并且绑定死信队列
beanDao
.
createQueue
(
vo
.
getQueueName
(),
vo
.
getDedTime
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
());
// 创建当前交换器
beanDao
.
createExchange
(
vo
.
getExchangeName
());
// 创建绑定队列
beanDao
.
createBinding
(
vo
.
getExchangeName
(),
vo
.
getQueueName
(),
vo
.
getRouteKey
());
ThreadHelper
.
runThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
// 创建死信队列
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
()))
{
beanDao
.
createQueue
(
vo
.
getDedQueueName
());
}
// 创建死信交换器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedExchangeName
()))
{
beanDao
.
createExchange
(
vo
.
getDedExchangeName
());
}
// 关联死信队列、交换器、路由器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
()))
{
beanDao
.
createBinding
(
vo
.
getDedExchangeName
(),
vo
.
getDedQueueName
(),
vo
.
getDedRouteKey
());
}
// 创建当前队列,并且绑定死信队列
beanDao
.
createQueue
(
vo
.
getQueueName
(),
vo
.
getDedTime
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
());
// 创建当前交换器
beanDao
.
createExchange
(
vo
.
getExchangeName
());
// 创建绑定队列
beanDao
.
createBinding
(
vo
.
getExchangeName
(),
vo
.
getQueueName
(),
vo
.
getRouteKey
());
}
});
}
}
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