Specify the property is included in the parent document store index.
Example
@DocStore
@Entity
@Table(name = "o_order")
public class Order {
...
@DocEmbedded(doc = "id,status,name,billingAddress(*,country(*)")
@ManyToOne
Customer customer;
}
-
Optional Element Summary
Optional Elements
-
Element Details
-
doc
String docThe properties on the embedded bean to include in the index.- Default:
- ""
-