Tagged Questions
6
votes
1answer
507 views
Best way to implement a Hibernate UserType after deprecations?
I recently got the latest version of Hibernate and noticed that my UserTypes now have warnings about AbstractStandardBasicType's nullSafeGet(ResultSet,String) and nullSafeSet(PreparedStatement,T,int) ...
2
votes
0answers
82 views
Hibernate Entities from Multiple Databases
Our data model is separated into schemas on two databases. The schemas are used in isolation except for a few single-key relationships that bridge between the two. There are no write transactions that ...
2
votes
2answers
797 views
Hibernate custom UserType isn't working
I've created a UserType (see below) to handle a situation in our mySQL database where we've been saving null dates as 0000-00-00 00:00:00.
When I try and persist my entity with a null for dispDT (see ...
2
votes
6answers
968 views
Map database column1, column2, columnN to a collection of elements
In legacy database tables we have numbered columns like C1, C2, C3, C100 or M1, M2, M3, M100.
This columns represent BLOB data.
It is not possible to change anything it this database.
By using JPA ...
1
vote
1answer
654 views
Hibernate/JPA/HSQL : How to create a Dialect mapping for User Type ARRAY
I have successfully created User Types with Postgres, and can read and write successfully.
@org.hibernate.annotations.Type(type = "com.xxx.datamodel.ext.FooType" )
@Column(name = "foo", nullable = ...
1
vote
1answer
316 views
Hibernate doesn't support accessing fields on usertypes for projection criterias?
My Classes:
public class User
{
@Type(type="AccountType")
private AccountType accountType;
}
public class AccountType
{
private String name;
private AccountType(String name)
{
...
1
vote
2answers
338 views
Hibernate UserType to truncate trim data
Wondering if it is a good or bad ideal to make use of Hibernate UserType to trim data from an incoming data feed to prevent exceptions thrown if the data is to large to fit into the given column.
We ...
1
vote
1answer
798 views
Grails: domain class mapping (collection of hibernate user types)
I am wondering if is possible to implement following domain model.
Let's have a domain class which contains set of intervals (joda time). I can use org.joda.time.contrib.hibernate.PersistentInterval ...
1
vote
0answers
334 views
Hibernate: Programmatically binding UserType's on Components
I have several different UserType's (org.hibernate.usertype.UserType) in the system. For this question I will focus on the fact that we use Joda time DateTime and its UserType, PersistentDateTime.
I ...
1
vote
1answer
527 views
Hibernate bit array to entity mapping
I am trying to map a normalized Java model to a legacy database schema using Hibernate 3.5. One particular table encodes a foreign keys in a one-to-many relationship as a bit array column.
Consider ...
1
vote
1answer
383 views
How to define UserType' s name globally in Hibernate?
It's possible to use @TypeDefs annotation to define short type name for a UserType. But how to define it for entire application?
1
vote
0answers
159 views
Query on hibernate entity with user-type field
working with JPA above hibernate impl.
I map my enums by using user-type follow the good practice to store a persistence key to the enum and not the ordinal (which can be changed).
Now, i have a ...
0
votes
0answers
130 views
Getting wrong data type error when persisting long as a byte array
I am creating a hibernate usertype to persist a long datatype as a byte array with additional data in the database(hsqldb). When I set the byte array in the prepared statement(.setBytes()) after ...
0
votes
0answers
146 views
Hibernate UserType not found by JBoss on startup
Stumped and frustrated.
Is this a JBoss scope issue??
Just switched to JBoss-6.0.0.Final from Tomcat stand-alone. Have been using Hibernate 3.6 all along and my package libraries are unchanged. ...
0
votes
1answer
118 views
Is it possible to map Hibernate <component> column to a custom user type?
I have defined a custom user type that works fine when used properties of my entities. For instance:
<class name="com.my.sample" table="MY_TABLE">
...
<property name="foo" ...