0
votes
0answers
20 views

Doctrine - One-To-One Bidirectional Relationship not allowed

i have a problem to transfer my databse design into Doctrine. At first some details: I get many football-related data from xml files and have to save it in my own database. One part of these data ...
0
votes
2answers
54 views

How to design a database for a game with cards and decks [closed]

I'm creating a Java-based server for a card game where clients can connect to make their "plays". Each "Game" (Java-class) holds a deck of 104 cards (a normal deck times two). So the basic classes I ...
1
vote
2answers
27 views

what is better, many repeated rows or increasing the tables?

I have a file sharing app. I did not store files in DB. Its just in folders. Those are user uploaded file. Now each file can be shared with multiple users, say 1 file shared with thousand. I want to ...
0
votes
0answers
16 views

Address classes and hibernate mappings

In my case address - is a complicated component that consists of Country, State, Town and Street entities. Each of them depends on another (one-to-many relationship between parent and its child). ...
0
votes
2answers
128 views

Enforce integrity constraint for closed loop foreign key constraints

The problem arises from the following three tables - Tour - Id TourPackage - Id - TourId Traveller - Id - TourId - PackageId The foreign key constraints are in place. However, I also wish ...
0
votes
1answer
39 views

Best pratice to save amount range values in db

I have one account table in that table I need to save the amount range I have one drop down that has the values like $25k-$30k, $30k-$35k it needs to increase by 5 up to $250k. I have planed to have ...
0
votes
0answers
194 views

Two relations between tables with composite primary key on hibernate

I have to develope an aplication that use an old database model that i shouldn't modify, or at least modify only a little because my new app have to run at same time with an old previous version. In ...
1
vote
3answers
180 views

DAO Layer always required in Hibernate ORM?

I think I have completely confused myself in implementing Hibernate ORM. My understanding is that Hibernate lets you eliminate DAO layer. Not that it is mandatory (or even advantageous), but it does ...
4
votes
4answers
200 views

Designing database entity that can only have exactly one of 2 foreign key?

A process in our system is responsible for sending files according to certain rules. Depending on its filename, a file can be sent to a customer or a factory (but never both). Each line of the rule ...
0
votes
2answers
73 views

Hibernate does kill my Java architecture?

I have read this great article by Mkyong about one-to-many relationship in Hibernate and I have a big doubt. Mkyong uses two clase in his example: Stock.java and StockDailyRecord.java I think the ...
0
votes
1answer
50 views

How to map classes in Hibernate that only have behavior?

i'm mapping some classes in hibernate, these classes are basically a strategy pattern. I have a class "User" that knows an abstract class "UserType" that declares an abstract method ...
0
votes
2answers
129 views

which is more efficient single table with large data columns or multiple tables? (hibernate - database)

My web application is implemented in Grails. My situation is that I have a domain class (hibernate class) with more columns and some of them are large Strings, up to 4000 characters. For example : ...
0
votes
3answers
75 views

Database Model Table for each Relationship?

I have a question modelling a relationship in my database. I have a table "comment" and three tables "user", "car", "house". Every user can comment on user, cars and houses. Normally this would ...
0
votes
0answers
85 views

Modeling entities for survey application questions [closed]

I am starting the development of an Eclipse RCP application with an embedded database; I have setup sqlite with hibernate/jpa. The program is intended to let users fill questionnaires in a wizard-like ...
0
votes
1answer
64 views

how to model multiple entities with same fields and functions

I have 2 entities, let's say Client and Company (both subclass of User). Each having a list of Events: ClientEvents and CompanyEvents The reason we've split up those tables at first (instead of going ...
0
votes
1answer
147 views

Database modeling issue with inheritance and JPA2/Hibernate

I use JPA/Hibernate, MySQL and Spring Roo and I am in the process of modeling an application that will have two different types of members: Male members Female members As of now, I have one ...
2
votes
1answer
130 views

Relation between type, attribute, instance and value

I'm developing an Java-application which stores its data via Hibernate in a database. One feature of this application is to define templates like types, etc. for reuse. For instance the type has ...
0
votes
1answer
86 views

Why do I get a Hibernate NonUniqueObject Exception?

I'm trying to figure out why I am getting this very hard to debug hibernate error and I have narrowed down the triggering behaviour to when I try to save a customer objects which will have a subset ...
2
votes
2answers
2k views

org.hibernate.MappingException: Repeated column in mapping for entity

I am doing a simple Poll system. I have 2 tables: Person: ID, Name, Surname Vote: ID, Vote (Boolean), VoterID (This is actually FK_PersonID), PersonID (This is actually FK_PersonID as well). I need ...
1
vote
1answer
102 views

How to model relationship between different parent entities and one common child entity

I'm looking for some suggestions for best practices around modeling the relationship between various entities and their documents (binaries such as PDF, TIFF etc). The entities are standard ...
1
vote
0answers
154 views

Multitenant DB with Tenant ID: Hibernate Foreign Key Mapping Issues with Insert

I am using Hibernate for my web application and used reverse engineering to create my mappings, model and DAO classes. In my DB, all tables have tenantId and one additional key field as composite PK. ...
0
votes
1answer
897 views

hibernate IllegalArgumentException in joined-subclass with Composite key

Edit #2 - Added person class at bottom. This is driving me nuts! I think this is a mapping problem, but I'm not sure. I'm new to Hibernate and I think using a joined-subclass with composite key is ...
1
vote
1answer
208 views

Graphical utility for defining a relational database structure for Java

I am using eclipse to develop a java ee web app with Hibernate to provide persistence and an SQL-type interface. Are there any recommended tools for drawing up the relational database model ...
0
votes
1answer
310 views

Hibernate many-to-many mapping and query to go with it

I'm having some trouble getting the hang of HQL. I have an application where I have a bunch of competitors in one table. Then I have competitions, where I match up the competitors. Each competition ...
0
votes
3answers
390 views

Database design to track changes - w/ Hibernate

Hey All I'm having a difficult time with a database design. As you can see from my current design a Registration can have multiple EmployerRegistrations which can have multiple ClientRegistrations. ...
1
vote
1answer
595 views

Hibernate. How to properly organize relation a one-to-many with annotations?

I am trying to make a simple example of Hibernate. I have two entities: User and Note. They have relation a one to many (one user can have a lot of notes). Please help me to correctly display these ...
0
votes
1answer
342 views

How to work correctly with Hibernate and Hibernate tools for eclipse?

I just started experimenting with Hibernate. My current approach for working with Hibernate is as follows: Write cfg.xml and reveng.cfg.xml Use Hibernate tools for eclipse to generate POJO and ...
1
vote
1answer
44 views

Retrieve unread posts from database

I've got a simple web application with two persistent classes, User and Post, both managed by Hibernate. I'd like the User to be able to list the posts which he hadn't yet read. How can I implement ...
1
vote
2answers
327 views

Best practise for naming conventions for entity fields and database table columns

i am using hibernate to create entities and database tables and i am confused about the naming conventions: let's give an example: we have a department entity as follows: public class Department { ...
0
votes
1answer
247 views

Change join table by another entity in hibernate

I have 2 entities: Person and Phone (one-to-many relationship). I want to use JoinTable: class Person @OneToMany() @JoinTable(name="PERSON_PHONES", joinColumns={ ...
0
votes
1answer
62 views

What table structure to use (hibernate)

I hava two entities: PhisicalPerson (PP), JuredicalPerson (JP). And I want to create Phone object. JP has many phones and PP has many phones (one to many relation). So in Phone object I have to create ...
1
vote
4answers
242 views

Use of empty strings instead of null - a good practice?

Consider for example in the database: CREATE TABLE users ( id INTEGER IDENTITY PRIMARY KEY, last_name VARCHAR (50) DEFAULT '' NOT NULL, first_name VARCHAR (50) DEFAULT '' NOT NULL, email ...
5
votes
1answer
222 views

How to properly implement a owner-owned-owner2 association in java with hibernate?

I have looked for information on how to implement the following association in hibernate and although the hibernate manual is very thorough, I haven't found the following use case addressed. I have a ...
1
vote
3answers
3k views

Hibernate Criteria One-to-Many Relationship

I have two entities: Dealers and Makes. Dealers have multiple makes.I am able to insert the records as a one-to-many relationship between these two entities. However, I am not able to retrieve the ...
0
votes
1answer
63 views

best way of design the relational model for hibernate

What is the best way design entity relational model Fist design E-R diagram then design Domain object model? Fist design Object model(Entity classes ) and then create database tables cording to ...
0
votes
1answer
168 views

Complex JPA relationship

I need help to build a complex relationship among the following tables: Here is the scenario: 1) 1 Family has N familyTypes (unidirectional) 2) 1 Family has N familyFields (Unidirectional) EDIT: ...
0
votes
1answer
90 views

Mapping tables to two inherited tables in Hibernate

I am trying to map a set of tables that have a complicated relationship between them. I have the following tables with fields: Table: Parent id type Table: Child1 parentId : ...
6
votes
4answers
1k views

Why do Hibernate docs recommend to use a join table for a one-to-many relation?

I thought that the common way to model a one-to-many relation in a database is via a foreign key relationship (i.e. one customer with many orders -> order table gets a FK reference to customer table). ...
0
votes
1answer
249 views

Modeling User Roles Hibernate

Just a design question. I have a entity essentially a user type who is a Therapist. The therapist is able to log on to the system as a user and perform the required functionality. There are however ...
0
votes
1answer
352 views

Multiple join associations in hibernate

My question is related to database design and also how to model that design in Hibernate. I have two tables with the following primary keys: BLOCK (BLOCK_ID) BLOCK_SHP (BLOCK_ID, SHAPE_VERSION) ...
1
vote
6answers
403 views

Database PK-FK design for future-effective-date entries?

Ultimately I'm going to convert this into a Hibernate/JPA design. But I wanted to start out from purely a database perspective. We have various tables containing data that is future-effective-dated. ...
0
votes
1answer
183 views

how to structure a mysql table in order to stress the database as less as possible (with using hibernate)

Ive got one question about the structure of a database when using hibernate I have to save information (one number) for every day in the database. Very often I need to select the information for a ...
0
votes
1answer
106 views

Hibernate and “greatest value wins” logic

I have a high_scores table in my database, it has two values: player_id highest_score I need a repository method that saves a new high score. I don't really want to dirty up my code with ...
1
vote
1answer
186 views

How do I keep user specific data separate in my database?

I'm in the planning phase of designing an app that will involve users registering with my website and storing data. I've decided on using Spring and Hibernate but I have a couple questions for which I ...
0
votes
3answers
624 views

How to keep track of user changes to objects in a web application?

I'm needing help to come up with a clever way of keeping track of user changes in a web application. Lets say we have this scenarion: User X logs in and updates a few fields in their profile, lets ...
0
votes
1answer
159 views

Migrate to Hibernate Annotations from plain hibernate configuration - Also Database needs FK

Currently I have following scenario with my project : Implemented Hibernate Configuration files (xml) mapping Database doesn't have any FK relationship yet So Now I wanna know that what are the ...
0
votes
2answers
1k views

Composite Primary Key Hibernate and Java Implementation

I have defined a very simple database as follow : I'm using the hibernate plug-in to generate the different classes, including the one-to-many relationship between customer and order. i made this ...
2
votes
4answers
153 views

Optimizing a query - using a field or using another table

I have a query which takes a long time and I want to optimize it. I'm looking for the most efficient way to do it. I'm working on Hibernate/JPA with Postgresql DB but any solution should be a generic ...
0
votes
1answer
142 views

ORM querying with transitive dependency

Here's is a part of my database schema: So I'm using the tables pages,points and items to generate the layout of my page. To each item is also tied an itemData. All my tables models are created and ...
2
votes
1answer
1k views

Hibernate Mapping One-to-Many, weird example

We are trying to build a One-to-many relation. Trying to understand how this works, we stumbled across this example, which shows how to do it. The example shows a reasonable ER diagram, but generally ...

1 2