Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
887 views

Mapping Java byte[] to MySQL binary(64) in Hibernate

I'm having some trouble mapping a byte array to a MySQL database in Hibernate and was wondering if I'm missing something obvious. My class looks roughly like this: public class Foo { private ...
5
votes
2answers
479 views

How do I output the HBMs that Fluent NHibernate Creates?

I am debugging my fluent application and would like to see what the generated files look like. Can someone help me out? -Nick
4
votes
1answer
5k views

How can I map “insert='false' update='false'” on a composite-id key-property which is also used in a one-to-many FK?

I am working on a legacy code base with an existing DB schema. The existing code uses SQL and PL/SQL to execute queries on the DB. We have been tasked with making a small part of the project ...
3
votes
1answer
38 views

how to generate Hibernate Mapping class from *.hbm.xml class

I want make a generic hibernate API which will create mapping class from hbm.xml and use in generic select method. Please help me.. Thanks
3
votes
2answers
1k views

Set creation and update time with Hibernate in Xml mappings

I'm using Hibernate with Xml mappings. I have an entity that has two fields creationDate and updateDate of type timestamp, that have to be filled with the current UTC time when the entity is ...
2
votes
2answers
336 views

Legacy database structure Hibernate mapping issue

I am having trouble mapping the following database structure (shortened for brevity with just PKs/FKs and a few extra columns: Policy Policy_Id (PK) ... Risk Risk_Id (PK) ... Party Party_Id (PK) ...
2
votes
1answer
200 views

can you re-use nhibernate mapping files for tables with common columns

We have a bunch of lookup tables that all share the same columns (ID,Code,Description, etc) and my co-worked just asked me if we could build a generic lookup.hbm.xml mapping file and use it as a base ...
2
votes
2answers
379 views

How to visualize NHibernate hbm.xml files

Are there any tools or clever methods for me to I visualize the contents of NHibernation hbm.xml files? I would like to load hbm files into a designer and see them as entities with relations
2
votes
2answers
269 views

Using nHibernate to map two different data models to one entity model

I have two different data models that map to the same Car entity. I needed to create a second entity called ParkedCar, which is identical to Car (and therefore inherits from it) in order to stop ...
2
votes
3answers
130 views

How do I map List<List<EntityClass>> in NHibernate?

I have a Rotation class, which contains references to multiple lists of Advert objects. I would prefer an implementation where Rotation has a property of type List<List<Advert>> to hold ...
2
votes
5answers
411 views

Can anyone recommend a NHibernate generating tool?

I want to auto generate .hbm mapping files from my domain objects
2
votes
4answers
8k views

Generating Hibernate hbm xml files & entities classes from existing DB schema

How can I generate Hibernate hbm xml files & entities classes from existing DB schema? Sharon
1
vote
1answer
20 views

How to add more hbm to existing mappingResources or existing hbm list in Spring

I have a parent-app, which includes sub-apps. My Parent app has its own included list of hbms <bean name="mappingResources" class="my.xxx.MyListFactoryBean"> <property ...
1
vote
2answers
50 views

Insertion of date by hibernate in Postgresql

I have the following mapping for the birth date in the hbm.xml file <property name="birthDate" type="date"> <column name="birth_date" length="4" /> </property>> The ...
1
vote
2answers
81 views

Generated full constructor contains too many params

I have a DB table with many, many fields that is causing an issue when I generate a POJO for that table using a Hibernate .hbm file. The issue is the full constructor being generated produces too ...
1
vote
2answers
482 views

HQL Query on Set Property

Suppose that I have the following HBM mapping: <class name="Student" table="student"> <set name="classes" table="student_classes" cascade="none"> <key column="studentId" ...
1
vote
0answers
233 views

One-to-many / many-to-one NHibernate mappings

I have an application with a handful of entities and a variety of relationships between them. However, something is wrong with my one-to-many relationships and I can't figure out what. When I try to ...
1
vote
1answer
66 views

Is it possible to define default object inside a SET element in HBM?

lets say I have mapping of a set within Parent hbm file: <set cascade="all" inverse="true" lazy="false" name="children"> <key column="parentChildId" foreign-key="fk_fk" ...
1
vote
3answers
451 views

NHibernate - illegal access to loading collection

I have two entities, Customer and Account. A Customer has many accounts. My mapping for Customer is : <bag cascade="all" name="Accounts" table ="Accounts" mutable="true" inverse="true"> ...
1
vote
1answer
461 views

Hibernate HBM Mapping Problem

I have the following three classes: public class Student { private Integer studentId; private StudentSchool studentSchool; private School school; public Integer getStudentId() { ...
1
vote
1answer
551 views

Fluent Nhibernate and Custom Collections

I have the following Fluent NHibernate configuration... public class TemplateMap : ClassMap<Template> { public TemplateMap() { Not.LazyLoad(); Id(t => ...
1
vote
1answer
527 views

@Audited annotation in Hibernate hbm file

I am using Hibernate as my orm in my application. Now I want to integrate it with Envers. At present I am generating entity using hbm files. In that case how can I mention in hbm file that generate ...
1
vote
1answer
167 views

many to many relation with nhibernate on the entity

I have a problem with nhibernate, i have a hbm file with a many to many relations. This works so far but i want to generate the hbm from a entity and trying to set the properties on the entity but ...
1
vote
2answers
191 views

NHibernate slow startup, conditional loading of HBMs and “Association references unmapped class”

Background We have several projects / applications running off the same model. They all have their own unique entities / tables, but also share 1 specific, common entity / table. I.e. Entities ...
1
vote
0answers
377 views

NHibernate: Filtering a child collection which includes a join

I have the following mapping files: <?xml version="1.0" encoding="utf-8"?> <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="MyAssembly" ...
1
vote
1answer
412 views

Changing the Hibernate 3 settings

I use Hibernate3 and Hibernate Tools 3.2.4 to generate hbm.xml and java files and I want to use List instead of HashSet(...). I've tried to modify the hbm.xml files, putting list instead of set. Is ...
1
vote
2answers
905 views

Nhibernate One-to-one mapping issue with child object insert error

i've being banging my head against the desk all day with the following Nhibernate problem. Each bank account has one (and only one) set of rates associated with it. The primary key of the bank ...
1
vote
2answers
844 views

NHibernate stored procedure problem

I'm having a hard time trying to get my stored procedure works with NHibernate. The data returned from the SP does not correspond to any database table. This is my mapping file: <?xml ...
1
vote
3answers
598 views

avoid duplication with auto increment key in Hibernate

I am trying to use Hibernate to auto increment the id, however, I try to avoid duplication. class Service { Long id; // auto increment String name; String owner; Boolean incremental; ...
1
vote
1answer
142 views

How to use Dynamic Instantiation with ICriteria in Nhibernate?

I know that you can do this easily with HQL using the following syntax: "select new ItemRow(item.id, item.name) from ..." In this example, the ItemRow need not be a persistent class that has its ...
1
vote
1answer
216 views

Mapping Map<Interface,Interface> with Hibernate

Hey people, i have a the following map* which is giving me lots of trouble: Map<MetricSourceInterface, AliasesInterface> MetricSourceInterface is an entity with simple properties. ...
1
vote
1answer
5k views

Fluent NHibernate and Stored Procedures

I have a basic Customer/Order/OrderItem/Product object graph. Customer has Many Orders, Order has Many Order Items, Product has many Order Items. These are successfully mapped using FNH. I've hit a ...
1
vote
2answers
2k views

set lazy as true during HQL execution time

In our application, we have various objects set to lazy false based on the application needs. However, in one of the use case we want to ignore all the lazy settings within the HBM files, and get ONLY ...
1
vote
1answer
384 views

Doubly connected ordered tree mapping using NHibernate

We need to map simple class using NHibernate: public class CatalogItem { private IList<CatalogItem> children = new List<CatalogItem>(); public Guid Id { get; set; } public ...
0
votes
1answer
44 views

Hibernate: optional many-to-one with not-null columns

I've got an optional many-to-one relationship between two classes. Hibernate translates the property to be optional by setting the foreign keys to null. My db-schema does not allow the columns to be ...
0
votes
1answer
12 views

Joining Tables with Composite Primary Keys in Hibernate hbm files

I have two table to be joined using hbm file. The scenario is as follows Table B has a composite PK. Table B a1 (pk) a2 (pk) a3 (pk) foo bar ======== Table A has a primary key and is a ...
0
votes
1answer
49 views

NHibernate one-to-many not saving children

class A {..} class ContainedA { property of type A and some extra information } class B : A { collection of type ContainedA } As you can tell the idea is to be able to contain a single instance of ...
0
votes
0answers
78 views

entity mapping: convert from hbm.xml to orm.xml, missing fields and attributes

I´m new to hibernate and I must convert the Entity Mapping in an application from hbm.xml to orm.xml. My Problem is that I am missing some fields and attributes to convert correctly. this is the ...
0
votes
1answer
61 views

Fluent NHibernate (1.2.0.712) export mappings to HBM not working / not respecting conventions

The HBM export function in Fluent NHibernate does not seem to work. If I call FluentMappingsContainer.ExportTo, the generated mappings come out incorrect, and I get the following exception: ...
0
votes
1answer
50 views

Can anyone provide me with a NHibernate mapping (hbm) file that contains full range of xml elements used in NHibernate?

Can anyone provide me with a NHibernate mapping (hbm) file that contains a full range of xml elements? I need a complete mapping file to get an idea of how many xml elements are there in use in ...
0
votes
0answers
38 views

NHibernate select with <any/>

I have the fallowing mapping for NHibernate: <class name="LocalizedProperty" table="LocalizedProperty"> <cache usage="read-write"/> <id name="Id" column="Id"> <generator ...
0
votes
0answers
31 views

Hbm template exporter

I would like to learn more about Hbm template exporter for the reverse engineering using Hibernate tools. I've read some of the documentations here. But it doesn't explain much. Is there any tutorials ...
0
votes
0answers
184 views

Hibernate mapping doesn't allow null timestamp

I am developing a web based application using spring-hibernate combination with Mysql as a database. I have observed 1 problem with hibernate mapping that it doesn't allow me to set null, when type is ...
0
votes
1answer
150 views

Hibernate, add the .hbm.xml file to the cfg.xml file

i need some information what is a hbm.xml file ??? i know just *.hbm files and how to add the .hbm.xml file to the cfg.xml file ??? i want to know that cuz i get an error when im trying to run my ...
0
votes
1answer
271 views

nhibernate map sql stored procedure to entity

Edited: I found another solution to call stored procedure via NHibernate and map it on my entity: var campaignsItems = nhSession.CreateSQLQuery("exec Select_List_Campaigns :currentLatDegrees, ...
0
votes
5answers
907 views

Mapping a boolean with hibernate

this is my first time ive asked a question on stackoverflow, but this website has been helpfull many times! im running into trouble with hibernate. I recently set my hbm2ddl to validate, and it has ...
0
votes
0answers
421 views

Mapping key-many-to-one + many-to-one

I'm trying to mapping follow class X: Class A <composite-id> <key-many-to-one name="group" class="Group" column="groupID" /> <key-property name="Id" column="Id" type="Int32" /> ...
0
votes
1answer
31 views

Mapping an object in Hibernate that has 2 lists causing problems

I'm trying to save an object that has 2 similar lists using a hbm.xml file. Below is my model object and HBM: public class MyClass { ... private List<MyType> list; private ...
0
votes
1answer
197 views

Recursive HBM Mapping

Can I do the following in my HBM mapping? <class name="Employee" table="employees"> <!-- assume that each person only has exactly one supervisor --> <many-to-one ...

1 2