[ 
https://issues.apache.org/jira/browse/CAMEL-7578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14052829#comment-14052829
 ] 

ASF GitHub Bot commented on CAMEL-7578:
---------------------------------------

GitHub user ancosen opened a pull request:

    https://github.com/apache/camel/pull/212

    CAMEL-7578 pattern attribute should not be ignored if locale is not set

    Hi,
    
    This PR is related to https://issues.apache.org/jira/browse/CAMEL-7578
    
    Bye,
    Andrea

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/ancosen/camel fix-Camel-7578

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/camel/pull/212.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #212
    
----
commit 8989bc7b2ddf75cbcc9d39e59c7b8a511ca684c7
Author: ancosen <[email protected]>
Date:   2014-07-05T10:10:23Z

    Fixes CAMEL-7578 pattern attribute should not be ignored if locale is not 
set

----


> camel-bindy - pattern attribute should not be ignored if locale is not set
> --------------------------------------------------------------------------
>
>                 Key: CAMEL-7578
>                 URL: https://issues.apache.org/jira/browse/CAMEL-7578
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-bindy
>    Affects Versions: 2.13.1
>            Reporter: Peter Keller
>
> This code doesn't pad field {{mandant}} with "0" if locale is not set: 
> {code}
> @CsvRecord(separator = ",")
> public class Unity {
>     @DataField(pos = 1, pattern = "000")
>     public float mandant;
> {code}
> Route:
> {code}
> final BindyCsvDataFormat bindy = new BindyCsvDataFormat(Unity.class);
> from("direct:start")
>     .marshal(bindy)
>     .log("${body}");
> {code}
> Testing with:
> {code}
> final Unity unity = new Unity();
> unity.mandant = 50f;
> final ProducerTemplate template = context.createProducerTemplate();
> {code}
> This prints:
> {quote}
> 50.0
> {quote}
> Only when setting the locale, {{pattern}} is not ignored:
> {code}
> bindy.setLocale(Locale.US.getISO3Country());
> {code}
> This prints:
> {quote}
> 050
> {quote}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to