Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JPA 2.0: @AttributeOverrides and inherited attributes don't get on well with each other

Tags:

jpa

jpa-2.0

I need help for the next problem which seems quite similar to this one. However, the suggested solution does not work in my case. I have the class RoadDistance that is tagged as @Embbedable and the class RoadMetricLoader, that is @Embbedable too and contains two attributes of type RoadDistante. There is also the class RoadConnection, which is an Entity and includes an attribute of the type RoadmetricLoader. I am not sucessful in overriding the attributes (@AttributeOverride) of RoadMetricLoader for the class RoadDistance (I do not get the fields ROAD_ESTIMATED_DISTANCE_VALUE, ROAD_ESTIMATED_DISTANCE_UNIT_ID, ROAD_REAL_DISTANCE_VALUE and ROAD_REAL_DISTANCE_UNIT_ID in the table ROAD_CONNECTION)

The database is MySQL 5.2.21 and the libraries used for JPA 2.0 are the ones from EclipseLink 2.4.1

I have tried different options but none of them work. I show all the options in commented blocks in the code you can see below. When uncommented one option keep the others commented. These are the result I get in each case:

OPTION 1: It does not return any error but in the table ROAD_CONNECTION I get only two fieds: VALUE and UNIT_ID.

OPTION 2: The same result as OPTION 1.

OPTION 3: This was my first bet (see the official documentation example 2, and the already indicated link above) but I get the next error

Local Exception Stack: 
Exception [EclipseLink-30005] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.PersistenceUnitLoadingException
Exception Description: An exception was thrown while searching for persistence archives with ClassLoader: sun.misc.Launcher$AppClassLoader@138d107f
Internal Exception: javax.persistence.PersistenceException: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Predeployment of PersistenceUnit [jamUnit] failed.
Internal Exception: Exception [EclipseLink-7309] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.ValidationException
Exception Description: The attribute named [estimatedRoadDistance.unit] from the embeddable class [class net.question.RoadMetricLoader] is not a valid mapping to use with an attribute override for the attribute [metricLoader] on class [class net.question.RoadConnection].
    at org.eclipse.persistence.exceptions.PersistenceUnitLoadingException.exceptionSearchingForPersistenceResources(PersistenceUnitLoadingException.java:127)
    at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:118)
    at javax.persistence.Persistence.createEntityManagerFactory(Unknown Source)
    at javax.persistence.Persistence.createEntityManagerFactory(Unknown Source)
    (...)

OPTION 4: The same as OPTION 1 and 2.

OPTION 5:

Local Exception Stack: 
Exception [EclipseLink-30005] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.PersistenceUnitLoadingException
Exception Description: An exception was thrown while searching for persistence archives with ClassLoader: sun.misc.Launcher$AppClassLoader@12360be0
Internal Exception: javax.persistence.PersistenceException: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Predeployment of PersistenceUnit [jamUnit] failed.
Internal Exception: Exception [EclipseLink-7309] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.ValidationException
Exception Description: The attribute named [unit] from the embeddable class [class net.question.RoadDistance] is not a valid mapping to use with an attribute override for the attribute [estimatedRoadDistance] on class [class net.question.RoadMetricLoader].
    at org.eclipse.persistence.exceptions.PersistenceUnitLoadingException.exceptionSearchingForPersistenceResources(PersistenceUnitLoadingException.java:127)
    at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:118)
    at javax.persistence.Persistence.createEntityManagerFactory(Unknown Source)
    at javax.persistence.Persistence.createEntityManagerFactory(Unknown Source)
    (...)

@Entity
@Table(name="UNIT")
public class Unit {

    private Long id;
    private String name;
    private String measureSystemCode;

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO, generator="UNIT_SEQ_GENERATOR")
    @SequenceGenerator(name="UNIT_SEQ_GENERATOR", sequenceName="UNIT_SEQ")
    @Column(name = "ID")
    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    @Column(name = "NAME", nullable = false)
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Column(name = "MEASURE_SYSTEM_CODE", nullable = false)
    public String getMeasureSystemCode() {
        return measureSystemCode;
    }

    public void setMeasureSystemCode(String measureSystemCode) {
        this.measureSystemCode = measureSystemCode;
    }

}

@MappedSuperclass
public abstract class Metric<V extends Comparable<V>> {

    private V value;
    private Unit unit;

    @Column(name = "VALUE", nullable = false)
    public V getValue() {
        return value;
    }

    public void setValue(V value) {
        this.value = value;
    }

    @ManyToOne
    @JoinColumn(name = "UNIT_ID", nullable = false)
    public Unit getUnit() {
        return unit;
    }

    public void setUnit(Unit unit) {
        this.unit = unit;
    }

}

@MappedSuperclass
public abstract class ScalarPhysicalMetric<M extends Number & Comparable<M>>
extends Metric<M> {

}

@Embeddable
public final class RoadDistance extends ScalarPhysicalMetric<Double> {

}

/*
// -##----------- OPTION 4 ---------->
@AttributeOverrides({
    @AttributeOverride(name = "estimatedRoadDistance.value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE")),
    @AttributeOverride(name = "estimatedRoadDistance.unit", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID")),
    @AttributeOverride(name = "realRoadDistance.value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE")),
    @AttributeOverride(name = "realRoadDistance.unit", column = @Column(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
})
// <---------- OPTION 4 -----------##-
*/
@Embeddable
public final class RoadMetricLoader {

    private RoadDistance estimatedRoadDistance;
    private RoadDistance realRoadDistance;

    @Embedded
    /*
    // -##----------- OPTION 5 ---------->
    @AttributeOverrides({
        @AttributeOverride(name = "value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE")),
        @AttributeOverride(name = "unit", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID"))
    })
    // <---------- OPTION 5 -----------##-
    */
    public RoadDistance getEstimatedRoadDistance() {
        return estimatedRoadDistance;
    }

    public void setEstimatedRoadDistance(RoadDistance estimatedRoadDistance) {
        this.estimatedRoadDistance = estimatedRoadDistance;
    }

    @Embedded
    /*
    // -##----------- OPTION 5 ---------->
    @AttributeOverrides({
        @AttributeOverride(name = "value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE")),
        @AttributeOverride(name = "unit", column = @Column(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
    })
    // <---------- OPTION 5 -----------##-
    */
    public RoadDistance getRealRoadDistance() {
        return realRoadDistance;
    }

    public void setRealRoadDistance(RoadDistance realRoadDistance) {
        this.realRoadDistance = realRoadDistance;
    }

}

// -##----------- OPTION 1 ---------->
/*
@AttributeOverrides({
    @AttributeOverride(name = "estimatedRoadDistance.value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE")),
    @AttributeOverride(name = "estimatedRoadDistance.unit", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID")),
    @AttributeOverride(name = "realRoadDistance.value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE")),
    @AttributeOverride(name = "realRoadDistance.unit", column = @Column(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
})
// <---------- OPTION 1 -----------##-
*/
/*
// -##----------- OPTION 2 ---------->
@AttributeOverrides({
    @AttributeOverride(name = "metricLoader.estimatedRoadDistance.value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE")),
    @AttributeOverride(name = "metricLoader.estimatedRoadDistance.unit", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID")),
    @AttributeOverride(name = "metricLoader.realRoadDistance.value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE")),
    @AttributeOverride(name = "metricLoader.realRoadDistance.unit", column = @Column(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
})
// <---------- OPTION 2 -----------##-
*/
@Entity
@Table(name="ROAD_CONNECTION")
public class RoadConnection {

    private Long id;
    private String pointA;
    private String pointB;
    private RoadMetricLoader metricLoader;

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO, generator="ROAD_CONNECTION_SEQ_GENERATOR")
    @SequenceGenerator(name="ROAD_CONNECTION_SEQ_GENERATOR", sequenceName="ROAD_CONNECTION_SEQ")
    @Column(name = "ID")
    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    @Column(name = "POINT_A", nullable = false)
    public String getPointA() {
        return pointA;
    }

    public void setPointA(String pointA) {
        this.pointA = pointA;
    }

    @Column(name = "POINT_B", nullable = false)
    public String getPointB() {
        return pointB;
    }

    public void setPointB(String pointB) {
        this.pointB = pointB;
    }

    /*
    // -##----------- OPTION 3 ---------->
    @AttributeOverrides({
        @AttributeOverride(name = "estimatedRoadDistance.value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE")),
        @AttributeOverride(name = "estimatedRoadDistance.unit", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID")),
        @AttributeOverride(name = "realRoadDistance.value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE")),
        @AttributeOverride(name = "realRoadDistance.unit", column = @Column(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
    })
    // <---------- OPTION 3 -----------##-
    */
    @Embedded
    public RoadMetricLoader getMetricLoader() {
        return metricLoader;
    }

    public void setMetricLoader(RoadMetricLoader metricLoader) {
        this.metricLoader = metricLoader;
    }

}
like image 559
GYLZ Avatar asked Jan 20 '13 00:01

GYLZ


2 Answers

AttributeOverride are for basic mappings. What you need is AssociationOverride : http://docs.oracle.com/javaee/6/api/javax/persistence/AssociationOverride.html

like image 162
Chris Avatar answered Oct 15 '22 06:10

Chris


As @Chris suggested AssociatedOverride must be used. If you change RoadMetricLoader as follows:

public final class RoadMetricLoader {

    private RoadDistance estimatedRoadDistance;
    private RoadDistance realRoadDistance;

    @Embedded
    @AttributeOverrides({
        @AttributeOverride(name = "value", column = @Column(name = "ROAD_ESTIMATED_DISTANCE_VALUE"))
    })
    @AssociationOverrides({  
        @AssociationOverride(name = "unit", joinColumns = @JoinColumn(name = "ROAD_ESTIMATED_DISTANCE_UNIT_ID"))
    })  
    public RoadDistance getEstimatedRoadDistance() {
        return estimatedRoadDistance;
    }

    public void setEstimatedRoadDistance(RoadDistance estimatedRoadDistance) {
        this.estimatedRoadDistance = estimatedRoadDistance;
    }

    @Embedded
    @AttributeOverrides({
        @AttributeOverride(name = "value", column = @Column(name = "ROAD_REAL_DISTANCE_VALUE"))
    })
    @AssociationOverrides({  
        @AssociationOverride(name = "unit", joinColumns = @JoinColumn(name = "ROAD_REAL_DISTANCE_UNIT_ID"))
    })  
    public RoadDistance getRealRoadDistance() {
        return realRoadDistance;
    }

    public void setRealRoadDistance(RoadDistance realRoadDistance) {
        this.realRoadDistance = realRoadDistance;
    }

now the table is created correctly in the DB:

enter image description here

In this case, you can also get rid of @AttributeOverrides and @AssociationOverrides as there is only one element for each one.

like image 30
GYLZ Avatar answered Oct 15 '22 06:10

GYLZ