Apache Camel with IBM MQ

前端 未结 3 1396
没有蜡笔的小新
没有蜡笔的小新 2021-02-14 22:36

Hello has anyone ever used Camel with IBM\'s MQ. We are looking at possibly using the two products together but have no example of the two products working together.

3条回答
  •  Happy的楠姐
    2021-02-14 23:09

    I have extensive use of IBM MQ's with camel. There is no issue using both together. I will paste a sample configuration from one of my spring context files leveraging a camel Jms Endpoint, A spring connection factory, and an IBM MQ definition.

    Camel Route

    from("someplace")
        .to("cpaibmmq:queue:myQueueName");
    

    Spring Context

    
        
        
        
        
        
        
        
        
    
    
    
        
            
                
                
                
                
                
            
        
    
    

提交回复
热议问题