Link to home
Start Free TrialLog in
Avatar of matthew016
matthew016Flag for Belgium

asked on

Hibernate - id tag

Hello,

I have the following error on my mapping file :
net.sf.hibernate.util.XMLHelper - Error parsing XML: XML InputStream(12) Le contenu du type d'élément "id" est incomplet et doit correspondre à "(meta*,column*,generator)".
(translated => content of element id is not complete : it must match "(meta*,column*,generator)".)
[09/10/07 16:17:07:224 CEST] 66ea4102 SystemErr     R Exception : Error reading resource: mapping-files/Bank.hbm.xml
[09/10/07 16:17:07:224 CEST] 66ea4102 SystemErr     R java.lang.NullPointerException

The problem is that this file, the tag "id" doesn't have a "generator" element (which i read in the doc, is optional) :
[...]
            <id name="keyBic" type="string" column="KEY_BIC">
                  <!--<generator class="increment"></generator>-->
            </id>
[...]
If I uncomment I have everything working.

The dtd is the following :
http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd

What should I do ?

Thanks
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

I don't believe it is optional...  Where did you read that it was?
Avatar of matthew016

ASKER

http://www.hibernate.org/hib_docs/v3/reference/en/html/mapping.html#mapping-declaration-id-generator

5.1.4.1. Generator
The optional <generator> child element names a Java class used to generate unique identifiers for instances of the persistent class. If any parameters are required to configure or initialize the generator instance, they are passed using the <param> element.

<id name="id" type="long" column="cat_id">
        <generator class="org.hibernate.id.TableHiLoGenerator">
                <param name="table">uid_table</param>
                <param name="column">next_hi_value_column</param>
        </generator>
</id>
All generators implement the interface org.hibernate.id.IdentifierGenerator. This is a very simple interface; some applications may choose to provide their own specialized implementations. However, Hibernate provides a range of built-in implementations. There are shortcut names for the built-in generators:

increment
generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. Do not use in a cluster.

identity
supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The returned identifier is of type long, short or int.

sequence
uses a sequence in DB2, PostgreSQL, Oracle, SAP DB, McKoi or a generator in Interbase. The returned identifier is of type long, short or int

hilo
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a table and column (by default hibernate_unique_key and next_hi respectively) as a source of hi values. The hi/lo algorithm generates identifiers that are unique only for a particular database.

seqhilo
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a named database sequence.

uuid
uses a 128-bit UUID algorithm to generate identifiers of type string, unique within a network (the IP address is used). The UUID is encoded as a string of hexadecimal digits of length 32.

guid
uses a database-generated GUID string on MS SQL Server and MySQL.

native
picks identity, sequence or hilo depending upon the capabilities of the underlying database.

assigned
lets the application to assign an identifier to the object before save() is called. This is the default strategy if no <generator> element is specified.

select
retrieves a primary key assigned by a database trigger by selecting the row by some unique key and retrieving the primary key value.

foreign
uses the identifier of another associated object. Usually used in conjunction with a <one-to-one> primary key association.

sequence-identity
a specialized sequence generation strategy which utilizes a database sequence for the actual value generation, but combines this with JDBC3 getGeneratedKeys to actually return the generated identifier value as part of the insert statement execution. This strategy is only known to be supported on Oracle 10g drivers targetted for JDK 1.4. Note comments on these insert statements are disabled due to a bug in the Oracle drivers.


ASKER CERTIFIED SOLUTION
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Unfortunately I have the version 2
I have set the generator as "assigned". this is what I need. Thank you.
Cool :-)  Good luck with it :-)

Tim