Commit eebbce04 authored by yanzg's avatar yanzg

修改MQ请求尸体,防止出错

parent df002405
...@@ -7,10 +7,9 @@ import com.yanzuoguang.util.helper.StringHelper; ...@@ -7,10 +7,9 @@ import com.yanzuoguang.util.helper.StringHelper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.util.List;
/** /**
* 交换器服务类 * 交换器服务类
*
* @author 颜佐光 * @author 颜佐光
*/ */
@Component @Component
...@@ -38,25 +37,39 @@ public class QueueServiceImpl implements QueueService { ...@@ -38,25 +37,39 @@ public class QueueServiceImpl implements QueueService {
private void initBean(QueueVo vo) { private void initBean(QueueVo vo) {
vo.check(); vo.check();
// 创建死信交换器
if (!StringHelper.isEmpty(vo.getDedExchangeName())) {
beanDao.createExchange(vo.getDedExchangeName());
}
// 创建死信队列 // 创建死信队列
if (!StringHelper.isEmpty(vo.getDedQueueName())) { if (!StringHelper.isEmpty(vo.getDedQueueName())) {
beanDao.createQueue(vo.getDedQueueName()); beanDao.createQueue(vo.getDedQueueName());
} }
// 关联死信队列、交换器、路由器
if (!StringHelper.isEmpty(vo.getDedQueueName(), vo.getDedExchangeName(), vo.getDedRouteKey())) { try {
beanDao.createBinding(vo.getDedExchangeName(), vo.getDedQueueName(), vo.getDedRouteKey()); // 关联死信队列、交换器、路由器
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.createQueue(vo.getQueueName(), vo.getDedTime(), vo.getDedExchangeName(), vo.getDedRouteKey());
// 创建绑定队列 try {
beanDao.createBinding(vo.getExchangeName(), vo.getQueueName(), vo.getRouteKey()); // 创建绑定队列
beanDao.createBinding(vo.getExchangeName(), vo.getQueueName(), vo.getRouteKey());
} catch (Exception ex) {
// 创建当前交换器
beanDao.createExchange(vo.getExchangeName());
// 创建绑定队列
beanDao.createBinding(vo.getExchangeName(), vo.getQueueName(), vo.getRouteKey());
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment