|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
package com.logpm.factory.config; |
|
|
|
|
|
|
|
|
|
import com.alibaba.nacos.shaded.com.google.common.collect.Maps; |
|
|
|
|
import com.logpm.factorydata.olo.config.CustomMessageConverter; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.ModuleNameConstant; |
|
|
|
|
import org.springblade.common.constant.RabbitConstant; |
|
|
|
|
import org.springframework.amqp.core.*; |
|
|
|
|
import org.springframework.amqp.rabbit.connection.ConnectionFactory; |
|
|
|
@ -15,8 +15,6 @@ import org.springframework.context.annotation.Configuration;
|
|
|
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
import static io.protostuff.MapSchema.MessageFactories.HashMap; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* RabbitMQ配置,主要是配置队列,如果提前存在该队列,可以省略本配置类 |
|
|
|
|
* |
|
|
|
@ -27,7 +25,7 @@ import static io.protostuff.MapSchema.MessageFactories.HashMap;
|
|
|
|
|
public class RabbitMqConfiguration { |
|
|
|
|
|
|
|
|
|
@Bean |
|
|
|
|
public RabbitTemplate createRabbitTemplate(ConnectionFactory connectionFactory,CustomMessageConverter converter) { |
|
|
|
|
public RabbitTemplate createRabbitTemplate(ConnectionFactory connectionFactory, CustomMessageConverter converter) { |
|
|
|
|
RabbitTemplate template = new RabbitTemplate(); |
|
|
|
|
template.setConnectionFactory(connectionFactory); |
|
|
|
|
template.setMandatory(true); |
|
|
|
|