Tagged Questions

0
votes
1answer
12 views

Mapping a property to a field from another table in NHibernate

consider the following class: class Order { int OrderId {get; set;} int CustomerId {get; set;} string CustomerName {get; set;} //other fields go here } which is mapped to Orders …
3
votes
3answers
64 views

Hibernate - Avoiding unnecessary join when using foreign key in where clause

Hi I try to optimize the database queries in Hibernate, but I found a blocker: <class name="SupportedLanguageVO" table="AR_SUPPORTED_LANG" > <cache usage="read-only"/> <id …
2
votes
2answers
46 views

Hibernate - get the size of a list in a property

I have a class A which have a list of B elements. In my A class i would like to add: int size; which will be valued with the number of B elements. So when I would call myA.getSize() I will have …
0
votes
1answer
29 views

Hibernate Map Mapping Problem

Hi I am trying to Persist a Map in Hibernate as follows: public class Product{ @OneToMany @MapKey(name="id") private Map<Company,ProductCompany> productCompanies=new …
2
votes
4answers
136 views

Is it possible to have foreign key enforced without object-to-object mapping?

Assuming the following mappings are provided: <class name="A" table="a_table"> <id name="id"/> <many-to-one name="entityB" column="fk_B" not-null="false" unique="true"/> …
4
votes
2answers
151 views

Hibernate 2nd level cache objects that are lazy=false, result in a default fetch=join, is it documented anywhere?

I experience the following apparently undocumented issue, and I want to understand if I did something wrong Did anyone encounter the same issue? Is it really not documented anywhere? or did I miss …
0
votes
1answer
54 views

How to force Grails to use proper column type in MySQL for Map field

Hi, I have a problem in Grails 1.1.2 + MySQL. My domain class Something contains field Map<String, Map<Integer, Integer>> priceMap When I run the app, Grails creates table …
1
vote
2answers
507 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: …
0
votes
3answers
151 views

Embed hibernate hbm.xml mappings in jar

Is it possible to embed the hibernate mapping hbm.xml’s to the jar and avoid manual reference in applicationContext.xml like <bean id="sessionFactory" …
1
vote
2answers
99 views

Breaking up a large Hibernate class

Dear all, I have a Hibernate class which is essentially just a wrapper around loads of collections. So the class is (massively simplified/pseudo) something like: @Entity public class MyClass { …
0
votes
3answers
135 views

Adding an enum as a class property in HBM.

I am trying to create a class in HBM file which contains an Enum as a field. The HBM is similar to this: <class name="a.b.c.myObject" table="OBJECT" > <property name="myEnum" …
1
vote
5answers
97 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 …
2
votes
2answers
120 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 …
1
vote
2answers
211 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
482 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, …

1 2
15 30 50 per page