APT : Support for declaring embedded annotation for properties in addition to embeddable for types

Bug #658188 reported by Timo Westkämper
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Querydsl
Fix Released
Medium
Unassigned

Bug Description

Support for declaring embedded annotation for properties in addition to embeddable for types. This is needed for Mongodb / Morphia support.

Changed in querydsl:
importance: Undecided → Medium
Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Generic support for embedded properties is now available. The following example

    @QueryEntity
    public class Parent {
        @QueryEmbedded
        Child child;
    }

    public class Child {
        String childProperty;
    }

is equivalent to

    @QueryEntity
    public class Parent {
        Child child;
    }

    @QueryEmbeddable
    public class Child {
        String childProperty;
    }

Changed in querydsl:
status: New → Fix Committed
Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Released in 2.0.2

Changed in querydsl:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.