Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To all,

I fear that this is a bit of a newbie question, but I hope to find some answers here nevertheless.

What I would like to do: have a custom object that I would like to marshall to CSV, and later on perform the process in the opositie direction. I have got it working for XML using JaxB, now I would like to do the same for CSV

Note; we are in a bit of a strict environment here, it would probably be possible to use Bindy, but that will take some time, so I am looking for a solution without Bindy (if possible).

Here is my code:

public class CSVMarshallingTest extends CamelTestSupport {

@EndpointInject(uri = "mock:marshall")
private MockEndpoint mockMarshall;

@EndpointInject(uri = "mock:unmarshall")
private MockEndpoint mockUnmarshall;

@Test
public void testMarshallFromObjectToCSV() throws Exception {
    mockMarshall.expectedMessageCount(1);
    String expected = "00000000123,12300000000,20121212";

    Map<String, ResponseStructure> firstLine = new HashMap<String, ResponseStructure> ();
    firstLine.put("1", new ResponseStructure ("00000000123", "12300000000", "20121212"));

    List<Map<String, ResponseStructure>> input = new ArrayList<Map<String, ResponseStructure>> ();
    input.add(firstLine);

    template.sendBody("direct:marshall", input);

    mockMarshall.expectedBodiesReceived(expected);
    assertMockEndpointsSatisfied();

    String payload = mockMarshall.getExchanges().get(0).getIn().getBody(String.class);
    log.info(payload);
}

@Override
protected RouteBuilder createRouteBuilder() throws Exception {
    return new RouteBuilder() {
        @Override
        public void configure() throws Exception {
            CsvDataFormat csv = new CsvDataFormat();
            csv.setDelimiter(";");

            from("direct:marshall")
                    .marshal(csv)
                    .wireTap("log:test")
                    .to("mock:marshall");

            from("direct:unmarshall")
                    .unmarshal().csv()
                    .wireTap("log:test")
                    .to("mock:unmarshall");

        }
    };
}

Obviously, the Class ReponseStructure has three fields, all Strings

My problem is that the 'rows' are not marshalled like I expect, this is what the wiretap outputs:

413 [Camel (camel-1) thread #0 - WireTap] INFO test - Exchange[ExchangePattern:InOnly, BodyType:byte[], Body:be.smals.dp.processor.ResponseStructure@b02928

]

And the assertion fails with the following message:

java.lang.AssertionError: mock://marshall Body of message: 0. Expected: <00000000123,12300000000,20121212> but was: <null>

Any help appreciated, Barrel

share|improve this question
1  
Maybe you can look into creating a typeconverter from your class to a list, camel.apache.org/type-converter.html. Not sure what happends when you have a map in a list that embedds your object, but I guess you need that Object to List conversion as a starting point anyway. – Petter Feb 13 at 12:34
Hello Petter, thanks for your answer! The Map/List solution comes from the documentation: camel.apache.org/csv.html If you have multiple rows of data you want to be marshalled into CSV format you can now store the message payload as a List<Map<String, Object>> object where the list contains a Map for each row. I will look at the type-convertor. – barrel Feb 13 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.