Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using EJB3/JBoss, how can I use a composite element from a table, e.g.

@Entity
public class X {
   @Id
   private int id;
   private Coordinate coordinate;
}

where Coordinate is a defined as (setters/getters left out for readability):

public class Coordinate {
    int x;
    int y;
}

And everything should be mapped to Table X which contains columns id, x, y.

share|improve this question

1 Answer

up vote 1 down vote accepted

Look at the @Embedded and @Embeddable annotations.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.