本文整理匯總了Java中org.springframework.amqp.rabbit.core.RabbitTemplate.setConnectionFactory方法的典型用法代碼示例。如果您正苦於以下問題:Java RabbitTemplate.setConnectionFactory方法的具體用法?Java RabbitTemplate.setConnectionFactory怎麽用?Java RabbitTemplate.setConnectionFactory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.amqp.rabbit.core.RabbitTemplate
的用法示例。
在下文中一共展示了RabbitTemplate.setConnectionFactory方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: call
import org.springframework.amqp.rabbit.core.RabbitTemplate; //導入方法依賴的package包/類
/**
* @Title: call
* @Description: call類型,點對點發送接收消息
* @param topicRoutingKey
* @param serverName
* @param bodyMsg
* @param outTimeMillis
* @throws Exception 設定文件
* @return Map<String,Object> 返回類型
*/
public Map<String,Object> call(String topicRoutingKey,String serverName,Map<String,Object> bodyMsg,int outTimeMillis) throws Exception{
Map<String,Object> sendMsg = new HashMap<String,Object>();
sendMsg.put("mqkey",topicRoutingKey+"."+serverName);
sendMsg.put("mqtype","call");
sendMsg.put("mqbody",bodyMsg==null?new HashMap<String,Object>():bodyMsg);
String topicMessage = JSON.toJSONString(sendMsg, JsonFilter.filter);
Message message=new Message(topicMessage.getBytes("UTF-8"),new MessageProperties());
RabbitTemplate directTemplate =new RabbitTemplate();
directTemplate.setConnectionFactory(connectionFactory);
directTemplate.setExchange(PropertyLoader.MQ_EXCHANGE);
directTemplate.setReplyTimeout(outTimeMillis);
Message reply=directTemplate.sendAndReceive(topicRoutingKey,message);
if(reply==null){
throw new Exception("waitting rabbitmq response timeout");
}
String body=new String(reply.getBody(),"UTF-8");
Map<String,Object> reqMsgMap =JSON.parseObject(body,new TypeReference<Map<String, Object>>(){});
LOG.info("back :"+reqMsgMap);
reqMsgMap =JSON.parseObject(reqMsgMap.get("mqbody").toString(),new TypeReference<Map<String, Object>>(){});
return reqMsgMap;
}
示例2: rabbitTemplate
import org.springframework.amqp.rabbit.core.RabbitTemplate; //導入方法依賴的package包/類
/**
* {@link RabbitTemplate}のインスタンスをDIコンテナに登録します。
* @return {@link RabbitTemplate}のインスタンス
*/
@Bean
public RabbitTemplate rabbitTemplate() {
RabbitTemplate template = new RabbitTemplate();
template.setConnectionFactory(factory());
template.setMessageConverter(converter());
template.setRetryTemplate(retryTemplate());
configure(template);
return template;
}