2
votes
2answers
66 views
How to map many-to-many association to a class mapped to two different tables?
I have a Voucher - POJO mapped to two tables. The first mapping assigns an entity name "voucherA" and maps the POJO to TableA. The second mapping uses "voucherB" as entity name and maps the POJO to …
2
votes
5answers
697 views
Hibernate: Mapping User-Friends relation in Social Networks
It's quite some time that I'm trying to figure out this problem and from googling around many people have similar problems.
I'm trying to model a User in a Social Network, using Hibernate, and what …
1
vote
5answers
54 views
Is there a way to define reusable properties to n-hibernate mappings?
I have a scenario that i want to add some standard properties to my entities. Meaning that i will have e.g. 1 int and 2 string properties applied to all relevant entities. I have over 100 mapping …
1
vote
1answer
176 views
Hibernate: unmapped class association exception
I know this should be a pretty elementary issue to fix, but 1) I'm relatively new to Hibernate, and 2) the fixes I've found don't (seem to) apply here.
Here is the exception I am getting:
…
1
vote
1answer
40 views
Need help with Hibernate Mapping
Hi,
I am trying to create a dashboard for a homegrown solution that collects native performance related statistics of application servers. Here's the DDL for the data that's been gathered by various …
0
votes
2answers
110 views
Mapping a table called “group” in Hibernate for DB2 and HSQLDB
I have a table called group, that I am trying to map using hibernate for DB2 and HSQLDB. Table name group is a reserved word and it must be quoted in HSQLDB. However DB2 does not like quoted table …
0
votes
4answers
286 views
Map entity using query in Hibernate
consider table
sales (id, seller_id, amount, date)
and here is a view that is generated from sales using query SELECT seller_id, SUM(amount) FROM sales GROUP BY seller_id
total_sales (seller_id, …
0
votes
1answer
18 views
How to map a group entity class from a “group name” column in NHibernate?
I have a table in my database looking roughly like this:
create table Foo (
Id int identity not null,
Name varchar(100) not null,
GroupName …
0
votes
2answers
136 views
hibernate: Is this mapping allowed?
@Entity
public class A {
@Column(name="Foos")
@Basic
private HashSet<Foo> fooList = new HashSet<Foo>();
}
where class Foo is nothing special, just implements Serializable.
…
0
votes
4answers
121 views
Is there a way to map a one-to-one with a where clause?
Please excuse my ignorance on the topic, as I am relatively new to Hibernate / NHibernate, but I have encountered a mapping I can't figure out:
This is what my database table looks like:
…
