Errata

Just Spring Integration

Errata for Just Spring Integration

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
PDF Page 4
United States

in the code snippet, the function
public void loadTrades(File fromFile) {...}
should have a return type List<Trade> instead of void.

Anonymous  Jul 15, 2013 
13
4th paragraph

This is from the safari online edition of Just Spring Integration.

Chapter 2. Basics > Enpoints > Example

The relevant code is

<jms:inbound-channel-adapter
id="tradesJmsAdapter"
connection-factory="connectionFactory"
destination="tradesQueue"
channel="trades-channel">

<int:poller fixed-rate="1000" />

</jms:inbound-channel-adapter>

The subsequent text reads

"It makes a connection to the JMS Destination, fetches the data from positionsQueue, converts the message ..."

Should "positionsQueue" be "tradesQueue"?

Kelly Brant  Mar 31, 2014 
Printed, PDF Page 22
in section "Priority Channel", first example.

setHeader(MessageHeades.PRIORITY, 10).build();

this line should be as following.

setHeader(MessageHeaders.PRIORITY, 10).build();

Anonymous  Sep 24, 2012 
Printed, PDF Page 35
last code example

class keyword fall off from GatewayEndpointTest client code. signature will be "public class GatewayEndpointTest()".

Anonymous  Sep 24, 2012 
Mobi Page 560
code snippet `public class NewTradeProcessor`

Should the method `processNewTrade` take an argument of type `Trade` or `Message<Trade>` ? (My suspicion is the latter, in which case the example is wrong.)

Jerry Gagelman  Sep 08, 2012