0
votes
1answer
68 views

Hibernate HashMap mapping

I am new to hibernate and I need to map an existing class structure to the database. Right now I have a Player, Arsenal and Weapon class. Every Player has his own (one) Arsenal - no problem. In the ...
0
votes
0answers
73 views

Hibernate list mapping with an intermediate table

I have searched and looked many questions but I couldn't find any feasible solution. I have 4 table. PROCESS PROCESS_WORKER PROCESS_WORKER_LIST PROCESS_PARAMETER PROCESS has PROCESS_ID no foreign ...
0
votes
1answer
49 views

Grails mapping to solve exception when saving instance

I have the following domain classes: class Team{ static hasMany = [localMatches: Match, visitingMatches: Match] static mappedBy = [localMatches: 'localTeam', visitingMatches: ...
0
votes
1answer
91 views

retrieve data from a column that mapped as array

I'm using hibernate mapping as follows: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" ...
0
votes
0answers
95 views

How to map feedback form questions in database using hibernate java

I am trying map the feedback form with hibernate but still i am not able to decide how to link entities The requirement is that i have the feedback form in following format Techical Questions ...
0
votes
1answer
545 views

NHibernate composite id mapping issue, bi/uni-directional OneToMany, ManyToOne and ManyToMany

In my project all of entities have composite primary keys [systemId as long, deviceId as long, id as long]. Values filled manualy before I save the entity. I'm using "code first" approach and to ...
0
votes
1answer
2k views

Hibernate many-to-one foreign key annotation mapping

I use Hibernate 4 with Spring 3.1 and I have a problem with foreign key constraints which are generated from this mapping. @Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public ...
1
vote
1answer
529 views

Using a JoinTable

I'm trying to do a twitter-like project using Java2EE, and here's a simple view of the database. Mention, Followers and Following are three JoinTable. (Note that mentioned,follower,following and ...
1
vote
2answers
2k views

Hibernate mapping multiple classes to one table using hbm.xml

I am fairly new to Hibernate and need some help with hibernate-mapping. I have 4 different classes which I want to map into one table, of which the primary key consists of attributes from 2 different ...
0
votes
2answers
129 views

How to do this hibernate mapping?

I am newbie to hibernate world, so sort of confused in writing mapping file in following condition. I have following class which I want to persist using hibernate : class Project { int ...
0
votes
1answer
724 views

One-to-many relationship with Hibernate

I'm using Hibernate with Spring and Hibernate return this error: Caused by: java.sql.BatchUpdateException: Column 'ID_TAREA_FK' cannot be null I have two classes public class Tarea { private ...
0
votes
1answer
132 views

enum vs typeId in hibernate

I'm implementing a database table like the following: Do_Something ------------ Id Name Frequency Frequency can only be 1 of 3 values at the moment; immediate, daily or weekly. So I can implement ...
0
votes
2answers
436 views

how to map a LinkedHashMap with Hibernate?

I would like to map a LinkedHashMap with Hibernate (annotation driven). I know the property @MapKey and @IndexColumn, but can I used both to map a linkedhashmap with basics strings ? Please don't ...
0
votes
1answer
575 views

hibernate - query return type

I have a (relatively) simple HQL query that returns two joined entities, that have a one-to-many relation. As a result of the query, I want to obtain a list of type entity1, where entity1.entity2 is ...
0
votes
1answer
283 views

hibernate grandfather , parent ,child mapping problem

I have a problem where I have this three grandfather parent and child and I am trying to get from parent all his children he gives me an half of is children odd as it seemes I just cant understand ...
4
votes
1answer
515 views

Hibernate mapping resource locate in the separate jar

I have separate jar file has contain hibernate entity mapping and mapping directly. My Hibernate confg (cgf.xml) placed in another jar file. And as result I catch exception "resource: ...
7
votes
3answers
7k views

Proper Hibernate id generator for postgres serial/bigserial column?

My PostgreSQL tables have id's of type bigserial, meaning they are generated at the time rows are inserted (and thus, the id column's value is not supplied in the INSERT statement). I'm having ...
1
vote
1answer
1k views

Hibernate : OneToMany mapping not based on PK?

I have 2 entities/tables. One is a proper entity, let's call it data. It has a number of fields containing so-called "multilingual codes". The second table, code, contains the multilingual values ...
3
votes
2answers
1k views

How to adjust constraints / DB mapping for Map within grails domain class

Following grails domain class: class MyClass { Map myMap } Now for myMap, grails automatically creates a new table for the elements in the map. However if I add elements which are too long (e.g. ...