@Target(value=FIELD) @Retention(value=RUNTIME) public @interface DocEmbedded
@DocStore
@Entity @Table(name = "o_order")
public class Order {
...
// include some customer details including
// nested billingAddress
@DocEmbedded(doc = "id,status,name,billingAddress(*,country(*)")
@ManyToOne
Customer customer;
Copyright © 2016. All rights reserved.