Tag: jaxb


  1. JAXB and ObservableList

    If you don’t customize your schemas with JAXB, your generated classes will not handle correctly the list in your UI (using beans binding functionnality). If you have lists in your xml, you’ll probably handle them with Jtable or JList in your UI. Modifications of objects (from…

    beans binding, design patterns, GUI, jaxb, xml binding

  2. More on JAXB plugin

    I’ve been talking about Java beans binding with JAXB on my old post. But trying it on my professionnal project, I’ve not been able to make it work. I encountered the following error :unrecognized parameter -Xinject-prop-listeners. So I used another plugin, a mod of the original…

    beans binding, jaxb

  3. XML binding with JAXB 3/3 : plugins

    Once you’ll have been working with JAXB basis, you’ll want to enhance what your doing. For example, in my case, I want to bind my datas with a GUI. For that, I’ll need to use beans binding (JSR 295) with netbeans. You can begin…

    ant, beans binding, jaxb, matisse, maven, Netbeans, xml binding

  4. XML binding with JAXB 2/3 : customisation

    This article is part 2 of the series on JAXB. On part 1, I exposed the basis of using JAXB. But you can go further with JAXB. You can heavily customize JAXB with annotations. Using the same phonebook example, you can introduce annotations in your schema to make JAXB meet…

    jaxb, xml binding

  5. XML binding with JAXB 1/3

    I’ve been watching for an XML binding tool for one of my projects, which make use of XML to store datas. I looked at hibernate, which now make XML bindings, but, from what I’ve seen, the binding is managed by the relational mapping. As I do…

    jaxb, xml binding