Created
March 14, 2011 18:52
-
-
Save dfeist/869641 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<spring-bean id="springBeanTransformer" class="org.my.CustomTransformer"/> | |
<custom-transformer name="globalTransformer" class="org.my.CustomTransformer"> | |
<spring:property key="foo" value="bar"/> | |
</custom-transformer> | |
<flow name="flowUsingCustomTransformers"/> | |
<inbound-endpoint address="..."/> | |
<transformer ref="springBeanTransformer"/> | |
<transformer ref="globalTransformer"/> | |
<custom-transformer class="org.my.CustomTransformer"/> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment