File Cleanup - Core
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,6 +11,7 @@
|
||||
.pmd
|
||||
.project
|
||||
.settings
|
||||
.checkstyle
|
||||
bin
|
||||
build
|
||||
build.log
|
||||
|
||||
@@ -16,4 +16,4 @@
|
||||
<queue capacity="5" />
|
||||
</channel>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -15,4 +15,4 @@
|
||||
<beans:bean class="org.springframework.integration.aggregator.integration.AnnotationAggregatorTests$TestAggregator"/>
|
||||
</aggregator>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -23,4 +23,4 @@
|
||||
<queue capacity="5" />
|
||||
</channel>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -25,4 +25,4 @@
|
||||
|
||||
<aggregator input-channel="defaultAggregator" output-channel="defaultOutput"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -33,4 +33,4 @@
|
||||
<aggregator id="aggregator_without_explicit_timeout"
|
||||
input-channel="aggregator_without_explicit_timeout_channel"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -15,4 +15,4 @@
|
||||
|
||||
<aggregator id="aggregator" input-channel="aggregatorChannel" auto-startup="true"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -25,4 +25,4 @@
|
||||
|
||||
<splitter id="downstream-another" input-channel="upstream-another" output-channel="downstream-splits" />
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -12,5 +12,5 @@
|
||||
<resequencer input-channel="in" output-channel="out" release-partial-sequences="true"/>
|
||||
|
||||
<channel id="out"/>
|
||||
|
||||
</beans:beans>
|
||||
|
||||
</beans:beans>
|
||||
|
||||
@@ -20,4 +20,4 @@
|
||||
<int:channel id="resultChannel">
|
||||
<int:queue/>
|
||||
</int:channel>
|
||||
</beans>
|
||||
</beans>
|
||||
|
||||
@@ -19,4 +19,4 @@
|
||||
|
||||
<si:annotation-config default-publisher-channel="defaultChannel"/>
|
||||
|
||||
</beans>
|
||||
</beans>
|
||||
|
||||
@@ -21,24 +21,24 @@
|
||||
<channel id="noLoadBalancerNoFailoverExecutor" >
|
||||
<dispatcher load-balancer="none" failover="false" task-executor="taskExecutor"/>
|
||||
</channel>
|
||||
|
||||
|
||||
<channel id="loadBalancerNoFailover">
|
||||
<dispatcher load-balancer="round-robin" failover="false"/>
|
||||
</channel>
|
||||
<channel id="loadBalancerNoFailoverExecutor">
|
||||
<dispatcher load-balancer="round-robin" failover="false" task-executor="taskExecutor"/>
|
||||
</channel>
|
||||
|
||||
|
||||
<channel id="noLoadBalancerFailover">
|
||||
<dispatcher load-balancer="none" failover="true"/>
|
||||
</channel>
|
||||
<channel id="noLoadBalancerFailoverExecutor">
|
||||
<dispatcher load-balancer="none" failover="true" task-executor="taskExecutor"/>
|
||||
</channel>
|
||||
|
||||
|
||||
<beans:bean id="taskExecutor" class="java.util.concurrent.Executors" factory-method="newCachedThreadPool"/>
|
||||
|
||||
<!-- send async errors to null channel to avoid chatter -->
|
||||
<bridge input-channel="errorChannel" output-channel="nullChannel"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -14,4 +14,4 @@
|
||||
<beans:constructor-arg value="2" />
|
||||
</beans:bean>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -1 +1 @@
|
||||
ms=messageStore
|
||||
ms=messageStore
|
||||
|
||||
@@ -11,4 +11,4 @@
|
||||
|
||||
<poller id="pollerWithFixedDelayAttribute" fixed-delay="37" receive-timeout="1234"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
</channel>
|
||||
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -13,7 +13,7 @@ splitter-inner-success=\
|
||||
<splitter id="testSplitter" input-channel="inChannel" output-channel="outChannel"> \
|
||||
<beans:bean class="org.springframework.integration.config.xml.InnerDefinitionHandlerAwareEndpointParserTests$TestSplitter" /> \
|
||||
</splitter> \
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
splitter-inner-success-with-poller=\
|
||||
<?xml version="1.0" encoding="UTF-8"?> \
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration" \
|
||||
@@ -37,7 +37,7 @@ splitter-inner-success-with-poller=\
|
||||
<poller task-executor="executor" max-messages-per-poll="5" fixed-delay="20" /> \
|
||||
</splitter> \
|
||||
<task:executor id="executor" pool-size="5" /> \
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
splitter-inner-success-with-poller-reversed-order=\
|
||||
<?xml version="1.0" encoding="UTF-8"?> \
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration" \
|
||||
@@ -61,7 +61,7 @@ splitter-inner-success-with-poller-reversed-order=\
|
||||
<beans:bean class="org.springframework.integration.config.xml.InnerDefinitionHandlerAwareEndpointParserTests$TestSplitter" /> \
|
||||
</splitter> \
|
||||
<task:executor id="executor" pool-size="5" /> \
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
splitter-ref-success=\
|
||||
<?xml version="1.0" encoding="UTF-8"?> \
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration" \
|
||||
@@ -384,4 +384,4 @@ filter-failure-refAndBean=\
|
||||
<filter input-channel="inChannel" ref="testFilterBean" method="filter" output-channel="outChannel"> \
|
||||
<beans:bean class="org.springframework.integration.config.xml.InnerDefinitionHandlerAwareEndpointParserTests$TestMessageFilter"/> \
|
||||
</filter>
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -25,4 +25,4 @@
|
||||
<context:property-placeholder
|
||||
location="org/springframework/integration/config/xml/propertyplaceholder/channel.properties" />
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -1 +1 @@
|
||||
test.greeting='Hello World!'
|
||||
test.greeting='Hello World!'
|
||||
|
||||
@@ -1 +1 @@
|
||||
filter.positive=payload > 0
|
||||
filter.positive=payload > 0
|
||||
|
||||
@@ -1 +1 @@
|
||||
router.oddeven=payload.number % 2 == 0 ? 'even' : 'odd'
|
||||
router.oddeven=payload.number % 2 == 0 ? 'even' : 'odd'
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:beans="http://www.springframework.org/schema/beans"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/integration
|
||||
http://www.springframework.org/schema/integration/spring-integration.xsd">
|
||||
@@ -13,4 +13,4 @@
|
||||
|
||||
<splitter input-channel="in" output-channel="out" delimiters="," expression="'foo,bar'"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:beans="http://www.springframework.org/schema/beans"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/integration
|
||||
http://www.springframework.org/schema/integration/spring-integration.xsd">
|
||||
@@ -15,4 +15,4 @@
|
||||
<beans:bean id="bean" class="org.springframework.integration.splitter.SplitterIntegrationTests$Receiver"/>
|
||||
</splitter>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<beans:beans xmlns="http://www.springframework.org/schema/integration"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:beans="http://www.springframework.org/schema/beans"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/integration
|
||||
http://www.springframework.org/schema/integration/spring-integration.xsd">
|
||||
@@ -15,4 +15,4 @@
|
||||
|
||||
<beans:bean id="bean" class="org.springframework.integration.splitter.SplitterIntegrationTests$Receiver"/>
|
||||
|
||||
</beans:beans>
|
||||
</beans:beans>
|
||||
|
||||
@@ -1 +1 @@
|
||||
split.lessThan5=payload.numbers.?[#this < 5]
|
||||
split.lessThan5=payload.numbers.?[#this < 5]
|
||||
|
||||
Reference in New Issue
Block a user