| The generated metamodel is empty for embeddables without getters. For example, for this types:
@Embeddable
public class Foo {
String foo;
}
@Entity
public class Bar {
String bar;
}
the metamodel generator will generate:
@StaticMetamodel(Foo.class)
public abstract class Foo_ {
}
@StaticMetamodel(Bar.class)
public abstract class Bar_ {
public static volatile SingularAttribute<Bar, String> bar;
public static final String BAR = "bar";
}
One would expect the same behavior for both the managed types. |