Skip to Content
Just Spring Integration
book

Just Spring Integration

by Madhusudhan Konda
April 2012
Beginner
96 pages
2h 26m
English
O'Reilly Media, Inc.
Content preview from Just Spring Integration

Common Endpoints

We have touched upon one of the common endpoints in an earlier chapter—Service Activators. In this section, we will discuss this in detail, and other endpoints, too. First, make sure that you have the integration namespace declared in your XML file for these endpoints:

...
xmlns:int="http://www.springframework.org/schema/integration"

xsi:schemaLocation="http://www.springframework.org/schema/integration 
  http://www.springframework.org/schema/integration/spring-integration-2.1.xsd"
...

Service Activator

The Service Activator is a generic endpoint which invokes a method on a bean whenever a message arrives on the channel. If the method has a return value, then the value will be sent to an output channel if the channel is configured.

Configuring the activator using the namespace is relatively straightforward. Use the service-activator element, setting input-channel and a ref to the bean:

<int:service-activator 
  input-channel="positions-channel"
  ref="newTradeActivator" 
  method="processNewPosition">
</int:service-activator>

<bean id="newTradeActivator" 
  class="com.madhusudhan.jsi.endpoints.common.NewTradeActivator" />

Any message arriving at positions-channel will be passed on to a NewTradeActivator (which the attribute ref points to) and the processNewPosition method is invoked which is declared using the method attribute. If the bean class has only one method, then you do not have to declare the method attribute—the framework resolves it as the service method and invokes it appropriately. ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Pro Spring Integration

Pro Spring Integration

Dr. Mark Lui, Mario Gray, Andy Chan, Josh Long
Just Spring

Just Spring

Madhusudhan Konda
Spring Integration in Action

Spring Integration in Action

Iwein Fuld, Jonas Partner, Mark Fisher, Marius Bogoevici

Publisher Resources

ISBN: 9781449335403Errata Page