Hibernate: how to map java object on two columns automatically?
Asked Answered
B

2

5

Imagine I have one common functionality: series and number (string and integer) of some document. My object (insurance policy) contains information about series and number of different documents, so I would like to group this series and number into one java object and let hibernate store two fields on each object in the same table.

See the example:

    class Polis {
        private DocInfo kaskoNumber;
        private DocInfo osagoNumber;
        private DocInfo tsNumber;
    }
    class DocInfo {
        private String series;
        private Integer number;
    }
    table:
    polis(kaskoSeries varchar2, 
          kaskoNumber numeric, 
          osagoSeries varchar2, 
          osagoNumber numeric..... )

Something like this. What I really want to do - to get rid of duplication of fields in Polis object and incapsulate series and number fields in DocInfo object. This is ok for java, but as for Hibernate the only way I know - is to create ManyToOne relation and move this information to the other table (doc_info). But I need to keep all the information in one table!

Thanks.

Bolshevik answered 20/2, 2011 at 14:39 Comment(0)
E
10

Use @Embeddable and @AttributeOverrides:

@Entity
class Polis {
    @AttributeOverrides( {
        @AttributeOverride(name="series", column = @Column(name="kaskoSeries") ),
        @AttributeOverride(name="number", column = @Column(name="kaskoNumber") )
    })
    private DocInfo kaskoNumber;

    @AttributeOverrides( {
        @AttributeOverride(name="series", column = @Column(name="osagoSeries") ),
        @AttributeOverride(name="number", column = @Column(name="osagoNumber") )
    })
    private DocInfo osagoNumber;
    ...
}

@Embeddable
class DocInfo {
    private String series;
    private Integer number;
}

See also:

Encratia answered 20/2, 2011 at 14:46 Comment(1)
Great help, thanks a lot! Annotations are a bit monsterous, but java class became more readable and convenient.Bolshevik
G
0

You want a Hibernate "component"--which in JPA is called an "embeddable" object. The component/embeddable has the two fields, and your entity class just has one instance of the component/embeddable. The two columns live in the entity table along with the rest of the entity's fields.

Gombroon answered 20/2, 2011 at 14:42 Comment(1)
I should mention, you can have multiple instances of the same component/embeddable in a single entity class, each mapping to different columns. I've done this many times myself.Gombroon

© 2022 - 2024 — McMap. All rights reserved.