@Embeddable
class Data {
}
@Entity
@Table(name = "entities")
class Entity {
@Embedded Data data;
}
produces a QEntity class which contains a field QAssocData which has not been generated, thus the code is broken.
This happens with querybean-generator:12.3.1. The @Embeddable class is not present in the generated ModuleInfo so it seems related to #53. The @Embeddable class is in its own project (because it is shared between two projects) and is added as dependency to the projects containing the entities.