Tagged Questions
1
vote
1answer
59 views
Defina a default type mapping on Hibernate 4
I need to define/override the default hibernate mapping to solve the problem of the java.util.UUID default mapping.
I've been looking at several comments related to this topic: Here Postgresql UUID ...
0
votes
0answers
120 views
Hibernate with user defined IdentifierGenerator UUID
I am working with a environment using Hibernate 3.6. I am trying to implement a MySQL table that uses UUIDs from java.util as the PK, these UUIDs are generated from multiple Strings defined by the ...
0
votes
0answers
74 views
Generating UUID takes a long time
When my application first sets up a UserTransaction for Hibernate, it takes ten minutes to do so. I have gone through the stack and it hangs on a UUID.generateRandom().
0
votes
0answers
94 views
Hibernate ID using UUID2 not working with column length 36
I am currently generating the hibernate identifier using UUID strategy.
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
@Column(length = 36)
...
0
votes
1answer
221 views
Hibernate mapping - Could not determine type for pg-uuid
I'm actually trying to use the Hibernate ORM with java annotations for the mapping. I use PostgreSQL for my database and its UUID type. As I have seen on others posts, when I want to map the UUID ...
2
votes
0answers
116 views
How do I auto-generate a GUID for a join table?
I'm using Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5. I have the following entity:
@GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex")
@Entity
@Table(name = "cb_organization", ...
1
vote
2answers
1k views
Persisting UUID in PostgreSQL using JPA
I'm trying to persist an entity in PostgreSQL that uses UUID as primary key. I've tried persisting it as a plain UUID:
@Id
@Column(name = "customer_id")
private UUID id;
With the above, I get this ...
0
votes
0answers
491 views
How to handle Postgresql UUIDs with Hibernate
I'm adding JPA (Hibernate) to a project that uses uuids in Postgresql. The uuids are the Postgresql uuid type.
I've followed these instructions and added Hibernate annotations like this:
...
1
vote
1answer
565 views
Can I reverse engineer a Postgresql db with Hibernate tools when a table has a UUID field?
I want to implement the following workflow:
I design tables in postgresql 9, I use Hibernate Tools from Eclipse Indigo to generate POJOs for these tables, and I want Hibernate to use annotations.
...
1
vote
1answer
1k views
Configuring Grails/Hibernate/Postgres for UUID
So I'm trying to make a grails app that hooks into an existing DB where the primary key column is a UUID:
Column | Type | Modifiers
...
0
votes
1answer
124 views
How to let hibernate don't override the specified UUID?
I defined a entity with a uuid primary key:
@Entity
@Table(name = "SITES")
public class Site extends Model {
@Id
@Column(length = 32)
@GeneratedValue(generator = "system-uuid")
...
0
votes
0answers
211 views
generating IDs in Oracle with hibernate backed ORM
There is an old database which needs to be ported to a new one but the porting process will take significant time during which the old db will remain operational.
In the old DB the IDs are sequential ...
1
vote
3answers
1k views
How do I query UUIDs stored as binary in a database (JPA/Hibernate/MySQL)
I have a Java/JPA/Hibernate/MySQL based app. I want to use UUIDs for object identity, however I want to ensure database performance does not suffer.
I found this great blog posting JPA and UUID ...
0
votes
1answer
1k views
How to store uuid in binary form using hibernate JPA 2
I have a question about string uuid in database in binary form through hibernate persistence (JPA2). I'm using now this code:
private UUID id;
@Id
@Type(type="uuid-char")
@GeneratedValue(generator = ...
13
votes
2answers
11k views
Using Hibernate UUIDGenerator via annotations
I'm using my uuid as following:
@Id
@GeneratedValue(generator = "uuid")
@GenericGenerator(name = "uuid", strategy = "uuid")
@Column(name = "uuid", unique = true)
private String uuid;
but I'm ...
0
votes
1answer
708 views
Manually assign value to a hibernate UUID
As we know, in hibernate, configure the generator of a id to "uuid" , then hibernate will auto generate a UUID value to the id field when saving a new object.If configuring the generator to ...
2
votes
1answer
1k views
Problem obtaining entities with uniqueidentifier primary key
In order to investigate whether Hibernate's behavior is different than NHibernate's for a particular usage scenario, I began writing a Java SE & Hibernate port of the relevant parts of my ...
1
vote
1answer
370 views
How can I map this polymorphism in Hibernate, using XML, without creating extra parent tables?
I'm trying to map a tree of POJOs in Hibernate so that I can (a) concisely use UUIDs for primary keys everywhere and (b) externally impose set-like relationships between otherwise unrelated tables. ...
7
votes
5answers
7k views
Problems mapping UUID in JPA/hibernate
According to the documentation, hibernate 3.6 should have support for the java.util.UUID type. But when I map it like:
@Id protected UUID uuid;
I get the following exception:
Caused by: ...
1
vote
5answers
8k views
generating UUID but only for 8 characters
i want to generate UUID but of only 8 characters, as UUID is generated of 32 characters.
Is it possible??
1
vote
3answers
597 views
generating UUID from dual table
I want to generate UUID for a unique string, i am using the following code:-
thread.createSession();
HexGenerator gen1 = new HexGenerator();
gen1.setHexId("2");
thread.ses.save(gen1);
gen1 = ...
3
votes
1answer
510 views
Hibernate session.get() Problem with UUID string ID
I am having a problem with Hibernate.
The primary key of ID in mysql table is UUID style String. e.g.08fe2a75-5d40-4645-896d-aab2a3ac96b8
But I can not use session.get() to fetch out the data for ...
0
votes
1answer
2k views
How to use UUID as primary key for Hibernate Entity?
I am trying to use UUID in Hibernate.
Have the following @Entity base-class description (with @MappedSuperclass annotation):
@Id
@Column(name="id")
private UUID id;
public UUID getId()
{
...
2
votes
2answers
1k views
Hibernate UserType and a defined length
I have a hibernate Usertype something like this:
public class UUIDHibernateType implements UserType
{
private static final int[] SQL_TYPES = new int[] { Types.CHAR };
public int[] sqlTypes ...
3
votes
2answers
6k views
Configure Hibernate to use Oracle's SYS_GUID() for Primary Key
I am looking for a way to get hibernate to use oracle's SYS_GUID() function when inserting new rows. Currently my DB tables have SYS_GUID() as the default so if hibernate simply generated SQL that ...
6
votes
5answers
4k views
Postgres + Hibernate + Java UUID
I want to use PostgreSQL's native UUID type with a Java UUID. I am using Hibernate as my JPA provider and ORM. If I try to save it directly, it is just saved as a bytea in Postgres.
How can I do ...
