Commit 15328cf4 authored by yanzg's avatar yanzg

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

parent f5175126
...@@ -4,6 +4,7 @@ import com.yanzuoguang.mq.dao.BeanDao; ...@@ -4,6 +4,7 @@ import com.yanzuoguang.mq.dao.BeanDao;
import com.yanzuoguang.mq.service.QueueService; import com.yanzuoguang.mq.service.QueueService;
import com.yanzuoguang.mq.vo.QueueVo; import com.yanzuoguang.mq.vo.QueueVo;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.thread.ThreadHelper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -37,6 +38,9 @@ public class QueueServiceImpl implements QueueService { ...@@ -37,6 +38,9 @@ public class QueueServiceImpl implements QueueService {
private void initBean(QueueVo vo) { private void initBean(QueueVo vo) {
vo.check(); vo.check();
ThreadHelper.runThread(new Runnable() {
@Override
public void run() {
// 创建死信队列 // 创建死信队列
if (!StringHelper.isEmpty(vo.getDedQueueName())) { if (!StringHelper.isEmpty(vo.getDedQueueName())) {
beanDao.createQueue(vo.getDedQueueName()); beanDao.createQueue(vo.getDedQueueName());
...@@ -58,5 +62,7 @@ public class QueueServiceImpl implements QueueService { ...@@ -58,5 +62,7 @@ public class QueueServiceImpl implements QueueService {
// 创建绑定队列 // 创建绑定队列
beanDao.createBinding(vo.getExchangeName(), vo.getQueueName(), vo.getRouteKey()); 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