Click here to Skip to main content
15,884,176 members
Articles / Programming Languages / Java

Spring Integration with ActiveMQ for POJO Based Service

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
25 Aug 2010GPL33 min read 79.4K   1.1K   3  
How to use Spring Integration with ActiveMQ to handle message in pure POJO
package org.soap.demo;

/**
 * @author Anand
 * @email  anandindnr@gmail.com
 * 
 * Bean to hold the data for operation
 */
public class Data {
	private int number1;
	private int number2;
	public void setNumber1(int number1) {
		this.number1 = number1;
	}
	public int getNumber1() {
		return number1;
	}
	public void setNumber2(int number2) {
		this.number2 = number2;
	}
	public int getNumber2() {
		return number2;
	}
	
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
India India
Specialization in Java/J2EE/JSF/Richfaces/Spring/Spring Integration
Area of interest: Refactoring with design patterns.
Currently working on Spring Integration and ActiveMQ.

Comments and Discussions