jTransfo 0.4 released

Release early, release often.

Only a day after the previous release, time for an extra feature. You can now specify a path on the @MappedBy annotation. This allows you to map fields which are found in a linked object in the domain object. Note that the linked object needs to exist to be able to convert from the transfer object to the domain object. When the dependency is several levels deep, then separate the names using a dot in the path parameter.

The artefacts are available on maven central.

<dependency>
    <groupId>org.jtransfo</groupId>
    <artifactId>jtransfo-core</artifactId>
    <version>0.4</version>
</dependency>

<dependency>
    <groupId>org.jtransfo</groupId>
    <artifactId>jtransfo-spring</artifactId>
    <version>0.4</version>
</dependency>
<dependency>
    <groupId>org.jtransfo</groupId>
    <artifactId>jtransfo-joda-time</artifactId>
    <version>0.4</version>
</dependency>
Posted in Release