How do you map a single value from a column in another table to the current object?
Example:
class Foo {
@Id
@Column(name="FOO_ID")
private String fooId;
@Column(name="FOO_A")
private String fooA;
//Column to map to another table?
//is a one to one mapping - but don't want a separate object for this.
private String barCode;
}
Table: Fields
Foo: FOO_ID, FOO_A
Bar: FOO_ID, BAR_CODE
How do I retrieve the BAR_CODE
field without creating a separate object (or a secondary table) using JPA annotations
?