當前位置: 首頁>>代碼示例>>Java>>正文


Java RabbitTemplate.setConnectionFactory方法代碼示例

本文整理匯總了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;
}
 
開發者ID:elves-project,項目名稱:openapi,代碼行數:35,代碼來源:MessageProducer.java

示例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;
}
 
開發者ID:ctc-g,項目名稱:sinavi-jfw,代碼行數:14,代碼來源:AmqpContextConfig.java


注:本文中的org.springframework.amqp.rabbit.core.RabbitTemplate.setConnectionFactory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。