Code Monkey home page Code Monkey logo

Comments (3)

cowtowncoder avatar cowtowncoder commented on June 14, 2024

Ok, at high level I think this makes sense, and I thought there was an issue for it, but apparently not.
It is something I have thought a bit about, although without coming to a conclusion.

Challenge here is that any-properties are really handled at databind level, without any knowledge of underlying format. So as-is, there is no way to really customize this for CSV use case.
This means that:

  1. It is possible to read/write any properties for cases where POJO has fewer entries than CSV schema -- but names have to map
  2. There is no way to handle truly unknown columns.

So question would be that of how to map such extra data. Answer may have to vary between serialization, deserialization.

For deserialization one would either have to use synthetic names ("1", "2", templating, something), and that might work quite easily. Use of Collection would seem to make sense, but in practice could only support Collection<String>; and would be incompatible with existing logic of calling method once per extra property.

For serialization things might be easier, come to think of that... if there was a way to indicate special arrangement. Perhaps Jackson 3.0 could have capability introspection which would indicate alternate call for such extra data, for formats that do not have true name/value pairing at low level (CSV is positional and name binding is extra layer).

from jackson-dataformats-text.

amr avatar amr commented on June 14, 2024

Isn't this already supported? https://github.com/FasterXML/jackson-dataformat-csv/blob/master/src/test/java/com/fasterxml/jackson/dataformat/csv/deser/AnySetterTest.java

from jackson-dataformats-text.

cowtowncoder avatar cowtowncoder commented on June 14, 2024

@amr Good point -- so it'd be due to issue 109 (from old repository) having been implemented.

from jackson-dataformats-text.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.