Tagged Questions

6
votes
1answer
249 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
844 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
977 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
2answers
29 views

Multiple occurrence of custom CompositeUserType in Hibernate causing MappingException

Hi I have the following code: public class Trail { private int trailID; private Location startLocation; private Location destination; // Getters and setters } which Location is a ...
1
vote
2answers
353 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
0answers
352 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
552 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 ...
0
votes
0answers
163 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
1answer
126 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" ...