You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2014/07/06 11:10:34 UTC

[jira] [Resolved] (CAMEL-7578) camel-bindy - pattern attribute should not be ignored if locale is not set

     [ https://issues.apache.org/jira/browse/CAMEL-7578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-7578.
--------------------------------

       Resolution: Fixed
    Fix Version/s: 2.14.0
                   2.13.3
                   2.12.5
         Assignee: Claus Ibsen

> 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
>            Assignee: Claus Ibsen
>             Fix For: 2.12.5, 2.13.3, 2.14.0
>
>
> 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)