Click here to Skip to main content
15,879,535 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.1K   1.1K   3  
How to use Spring Integration with ActiveMQ to handle message in pure POJO
/*
 * Copyright 2002-2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.soap.demo;

import org.springframework.integration.annotation.ServiceActivator;

/**
 * @author Anand
 * @email  anandindnr@gmail.com
 * 
 * Actual Service 
 */
public class Service {

	@ServiceActivator
	public String add(Data input) throws Exception {
		return String.valueOf("Result: " + (input.getNumber1() + input.getNumber2()));
	}

}

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