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
eebbce04
Commit
eebbce04
authored
Sep 18, 2020
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改MQ请求尸体,防止出错
parent
df002405
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
13 deletions
+26
-13
QueueServiceImpl.java
...ava/com/yanzuoguang/mq/service/impl/QueueServiceImpl.java
+26
-13
No files found.
yzg-util-mq/src/main/java/com/yanzuoguang/mq/service/impl/QueueServiceImpl.java
View file @
eebbce04
...
...
@@ -7,10 +7,9 @@ import com.yanzuoguang.util.helper.StringHelper;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
java.util.List
;
/**
* 交换器服务类
*
* @author 颜佐光
*/
@Component
...
...
@@ -38,25 +37,39 @@ public class QueueServiceImpl implements QueueService {
private
void
initBean
(
QueueVo
vo
)
{
vo
.
check
();
// 创建死信交换器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedExchangeName
()))
{
beanDao
.
createExchange
(
vo
.
getDedExchangeName
());
}
// 创建死信队列
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
()))
{
beanDao
.
createQueue
(
vo
.
getDedQueueName
());
}
// 关联死信队列、交换器、路由器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
()))
{
beanDao
.
createBinding
(
vo
.
getDedExchangeName
(),
vo
.
getDedQueueName
(),
vo
.
getDedRouteKey
());
try
{
// 关联死信队列、交换器、路由器
if
(!
StringHelper
.
isEmpty
(
vo
.
getDedQueueName
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
()))
{
beanDao
.
createBinding
(
vo
.
getDedExchangeName
(),
vo
.
getDedQueueName
(),
vo
.
getDedRouteKey
());
}
}
catch
(
Exception
ex
)
{
// 创建死信交换器
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
.
createExchange
(
vo
.
getExchangeName
());
// 创建当前队列,并且绑定死信队列
beanDao
.
createQueue
(
vo
.
getQueueName
(),
vo
.
getDedTime
(),
vo
.
getDedExchangeName
(),
vo
.
getDedRouteKey
());
// 创建绑定队列
beanDao
.
createBinding
(
vo
.
getExchangeName
(),
vo
.
getQueueName
(),
vo
.
getRouteKey
());
try
{
// 创建绑定队列
beanDao
.
createBinding
(
vo
.
getExchangeName
(),
vo
.
getQueueName
(),
vo
.
getRouteKey
());
}
catch
(
Exception
ex
)
{
// 创建当前交换器
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