1
vote
0answers
12 views

Hibernate/JPA 2.0 - Table per Class and @EmbeddedId Inheritance

Aware as I am that @Embeddable components inheritance in Hibernate is not supported, I'm trying to find the best strategy to deal with my very custom entity mapping. The story is as follows: I have ...
1
vote
1answer
55 views

hql inner join Path expected for join! error

hi have following entities; @Entity public class FilesInfo { @Id @GeneratedValue private Integer id; private String name; private String url; @OneToMany(cascade= ...
0
votes
1answer
109 views

hibernate JPA composite foreign key issue on read

I am using Hibernate JPA, EnterpriseDB(PostgresPlus Advanced Server 9.2.1.3) and Jboss 7.1.1 Final and receiving an exception while reading an entity with composite primary key and (one-to-one) ...
0
votes
1answer
30 views

Hibernate JPA Cannot Create due to FK

When I try to create a new category in my application I am getting the below error which is complaining about a FK constraint. However the FK it is complaining about maps the Category Description to ...
0
votes
1answer
86 views

Wrong Join type or missing criteria, multiple tables with one to many

I would like to use the below join in several of my entities, however anytime I try I run into a FK issue. I believe it is because it is using the ID column of the entity to match to the ...
0
votes
0answers
16 views

Finding the other end of an association at runtime (jpa/hibernate)

Given an association of any kind between 2 jpa entities, and meta data in javax.persistence.metamodel.Attribute (or sub-interface) instances provided by the EntityManagerFactory, is it possible to ...
0
votes
0answers
74 views

convert hibernate component with map to JPA

I am still fairly new to JPA ....I have some existing hibernate mapping which I would like to now convert into JPA annotations. I am trouble with the component part show below: ...
1
vote
1answer
52 views

OneToMany unidirectional with composit pk on the Many side

I have the following simple example: @Entity public class Profile { @Id private long id; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY) @JoinColumn(name="profileId", nullable = ...
0
votes
3answers
344 views

Hibernate unidirectional OneToMany delete violates constraint ( optional=false at parent side?)

I use Hibernate 3.6 and I have something like this: @Entity public class Parent { @OnyToMany( fetch = FetchType.LAZY, cascade = { ascadeType.ALL } ) @Cascade( { ...
0
votes
2answers
115 views

mapping a map JPA, hibernate key

How can I map a map? I have this: private Map<Integer, Trip> trips = new HashMap<Integer, Trip>(); As mapkey I want the trip id.. The Trip entity is holding the reference to my ...
0
votes
0answers
159 views

Hibernate not setting ManyToOne and not deleting before inserting

I have a basic @OneToMany mapping. For simplicitty, I have omitted getters/setters class Foo { @OneToMany(mappedBy = "foo", cascade = CascadeType.ALL, fetch = FetchType.EAGER) private ...
0
votes
2answers
217 views

hibernate jpa join two table with another table

I have two table A and B Table A: ID_A name table B ID_B name I joined both by a third table C table with their primary key table C ID_C ID_A ID_B I'd like to know this relationship in jpa ...
2
votes
0answers
299 views

MappingException: Could not determine type; Using @Embeddable and @Embedded

I am attempting to move a framework from hibernate3 to 4, this code worked in 3. The framework uses Interfaces to break the tight coupling of classes. Hence: The Entity class is marked with @Entity ...
3
votes
3answers
746 views

Hibernate does not delete orphans on OneToMany

I have the following pretty simple one to many relations: Team has a Set of players: @Entity(name = "TEAM") @Access(AccessType.PROPERTY) public class Team{ private Integer id; private String ...
1
vote
2answers
140 views

Hibernate ordering in sql

Is it possible to sort the Set collection using hibernate, in sql without using SortedSet interface, without using @OrderBy annotation - just using criteria's addOrder. I've tried it and it adds ...
0
votes
1answer
507 views

Issue while updating @OneToMany collection

I am stuck at a point where i am trying to update a @OneToMany mapping. Problem: I have 2 entities: Criteria and Tasks. A criteria can contain multiple tasks. class Criteria { ...
0
votes
1answer
880 views

Hibernate: unable to save object using JPA when object is containing reference of saved object

I have an employer table with schema containing userprofileId The employer table as stated below is containing userprofileid which is primary key of user table id int(11) (not ...
1
vote
1answer
1k views

best latest Hibernate book

Which is the latest hibernate book that includes information about hibernate 3 and also the latest JPA specification.
0
votes
1answer
357 views

Persistence a child object with existing parent one

Assume there are two entities with ManyToOne relation: @Entity public class A { private long code; @Id @GeneratedValue(strategy=GenerationType.AUTO) public long getCode() { ...