INT-729 Added log4j configuration to the odd/even router samples. Also added a Message Filter with "nullChannel" as a discard channel. Set the log level to DEBUG for the NullChannel.

This commit is contained in:
Mark Fisher
2009-07-16 22:47:51 +00:00
parent 48c8c37c23
commit cb0307a12b
10 changed files with 111 additions and 18 deletions

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
<!-- Appenders -->
<appender name="console" class="org.apache.log4j.ConsoleAppender">
<param name="Target" value="System.out" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
</layout>
</appender>
<!-- Loggers -->
<logger name="org.springframework">
<level value="warn" />
</logger>
<logger name="org.springframework.integration">
<level value="warn" />
</logger>
<logger name="org.springframework.integration.channel.NullChannel">
<level value="debug" />
</logger>
<!-- Root Logger -->
<root>
<priority value="warn" />
<appender-ref ref="console" />
</root>
</log4j:configuration>

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* 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.
@@ -19,6 +19,12 @@ package org.springframework.integration.samples.oddeven;
import java.util.concurrent.atomic.AtomicInteger;
/**
* A simple POJO providing a method that returns incrementing integer values.
* This is referenced in the sample's configuration by an inbound Channel
* Adapter acting as a Polling Consumer.
* <p/>
* Every 5th number will be returned as a negative value.
*
* @author Mark Fisher
*/
public class Counter {
@@ -26,7 +32,8 @@ public class Counter {
private final AtomicInteger count = new AtomicInteger();
public int next() {
return count.incrementAndGet();
int nextNumber = count.incrementAndGet();
return (nextNumber % 5 == 0) ? -nextNumber : nextNumber;
}
}

View File

@@ -19,11 +19,16 @@ package org.springframework.integration.samples.oddeven;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Demonstrates a method-invoking inbound Channel Adapter with a
* Cron-based polling trigger followed by a simple method-invoking
* router.
* Demonstrates a method-invoking inbound Channel Adapter acting as a Polling
* Consumer with a cron-based trigger. That adapter is followed, downstream, by
* a simple method-invoking Message Filter that discards negative numbers to
* the "nullChannel". Next is a Content Based Router. The router sends to one of
* two channels based on whether the payload number is odd or even. Each of
* those two channels has an Event Driven Consumer ready to log the number
* and the current time.
* <p>
* See the 'cronOddEvenDemo.xml' configuration file for more detail.
* See the 'cronOddEvenDemo.xml' configuration file for more detail. The cron
* expression is based on the Fibonacci sequence. Feel free to modify it.
*
* @author Mark Fisher
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* 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.
@@ -23,6 +23,8 @@ import org.springframework.integration.annotation.MessageEndpoint;
import org.springframework.integration.annotation.ServiceActivator;
/**
* A POJO Service Activator that logs even numbers and the current time.
*
* @author Mark Fisher
* @author Marius Bogoevici
*/

View File

@@ -19,9 +19,13 @@ package org.springframework.integration.samples.oddeven;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Demonstrates a method-invoking inbound Channel Adapter with an
* Interval-based polling trigger followed by a simple method-invoking
* router.
* Demonstrates a method-invoking inbound Channel Adapter acting as a Polling
* Consumer with an interval-based trigger. That adapter is followed,
* downstream, by a simple method-invoking Message Filter that discards
* negative numbers to the "nullChannel". Next is a Content Based Router. The
* router sends to one of two channels based on whether the payload number is
* odd or even. Each of those two channels has an Event Driven Consumer ready
* to log the number and the current time.
* <p>
* See the 'intervalOddEvenDemo.xml' configuration file for more detail.
*

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* 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.
@@ -23,6 +23,8 @@ import org.springframework.integration.annotation.MessageEndpoint;
import org.springframework.integration.annotation.ServiceActivator;
/**
* A POJO Service Activator that logs odd numbers and the current time.
*
* @author Mark Fisher
* @author Marius Bogoevici
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* 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.
@@ -17,15 +17,14 @@
package org.springframework.integration.samples.oddeven;
/**
* A POJO Content Based Router.
*
* @author Mark Fisher
*/
public class ParityResolver {
public String getParity(int i) {
if (i % 2 == 0) {
return "even";
}
return "odd";
return (i % 2 == 0) ? "even" : "odd";
}
}

View File

@@ -0,0 +1,30 @@
/*
* 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.springframework.integration.samples.oddeven;
/**
* A POJO Message Filter.
*
* @author Mark Fisher
*/
public class PositiveChecker {
public boolean isPositive(int i) {
return i > 0;
}
}

View File

@@ -18,7 +18,11 @@
</poller>
</inbound-channel-adapter>
<router ref="parityResolver" method="getParity" input-channel="numbers"/>
<filter input-channel="numbers" output-channel="positives"
ref="positiveChecker" method="isPositive"
discard-channel="nullChannel"/>
<router ref="parityResolver" method="getParity" input-channel="positives"/>
<service-activator ref="oddLogger" input-channel="odd"/>
@@ -26,6 +30,8 @@
<beans:bean id="counter" class="org.springframework.integration.samples.oddeven.Counter"/>
<beans:bean id="positiveChecker" class="org.springframework.integration.samples.oddeven.PositiveChecker"/>
<beans:bean id="parityResolver" class="org.springframework.integration.samples.oddeven.ParityResolver"/>
<beans:bean id="oddLogger" class="org.springframework.integration.samples.oddeven.OddLogger"/>

View File

@@ -18,7 +18,11 @@
</poller>
</inbound-channel-adapter>
<router ref="parityResolver" method="getParity" input-channel="numbers"/>
<filter input-channel="numbers" output-channel="positives"
ref="positiveChecker" method="isPositive"
discard-channel="nullChannel"/>
<router ref="parityResolver" method="getParity" input-channel="positives"/>
<service-activator ref="oddLogger" input-channel="odd"/>
@@ -26,6 +30,8 @@
<beans:bean id="counter" class="org.springframework.integration.samples.oddeven.Counter"/>
<beans:bean id="positiveChecker" class="org.springframework.integration.samples.oddeven.PositiveChecker"/>
<beans:bean id="parityResolver" class="org.springframework.integration.samples.oddeven.ParityResolver"/>
<beans:bean id="oddLogger" class="org.springframework.integration.samples.oddeven.OddLogger"/>