0
votes
1answer
19 views
How to map the type Interval in Hibernate ?
Hi,
under PostGresql, Im using
PersistentDuration for the mapping between the sql type interval & duration but it doesnt work.
An other user found the same issue & come with his own class:
…
1
vote
2answers
16 views
Implementing a data history / versioning solution for a Hibernate-based application (with a twist).
First the basic facts: Java webapp, Spring, Hibernate, MySQL.
The situation is that I have a complex object model of e.g. a Car. It's
composed of many objects (Engine, Tires, ...) with many-to-one …
0
votes
1answer
18 views
H2 database In memory - Init schema via Spring/Hibernate
I have a Spring/Hibernate application with H2 database and I have a few issues with configuring H2 to run in an embedded mode (in memory):
1. I want spring to start the H2 database so I created the …
1
vote
1answer
62 views
Not so simple Hibernate question
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.
…
2
votes
4answers
44 views
SQL argument limit in Oracle
It appears that there is a limit of 1000 arguments in an Oracle SQL. I ran into this when generating queries such as....
select * from orders where user_id IN(large list of ids over 1000)
My …
1
vote
2answers
11 views
Hibernate database specific columnDefinition values
Hello,
the problem is as follows: We're using hibernate with annotations as O/R Mapper.
Some @Column annotations look like:
@Column(columnDefinition = "longblob", name = "binaryData", nullable = …
0
votes
2answers
68 views
Java Hibernate Memory leak
Hello,
I'm developing a Flex application with BlazeDS and I'm experiencing memory leak when using java to query from MySQL in hibernate. Can anyone tell me how to deal with this memory leak? It seems …
0
votes
2answers
43 views
How do I persist a Java property of type Object using Hibernate?
I have a Java class with a property like this
private Object myObj;
When I try to save the class using Hibernate annotations, I get the rather confusing error message "property mapping has wrong …
1
vote
1answer
43 views
how to map a one-to-many collection to a joined subclass when key is in the parent class
I'd like to map a one to many collection to a subclass but the key of the collection is an attribute of the parent class.
Currently i'm mapping AbstractFoo Foo and Bar class like this :
<class …
1
vote
1answer
36 views
concurrency in hibernate
I have a servlet that does some work for user and then decrement user's credit. When I watch user's credit in the database in real time, if there are many concurrent requests from the same user, the …
0
votes
0answers
27 views
Problem with Hibernate Shards & JNDI
I'm trying to run a sample program for hibernate shards.
I'm all done with it but whenever I run the test program I get an Exception
javax.naming.NoInitialContextException: Need to specify class …
0
votes
3answers
56 views
Learning Struts, Spring and Hibernate
I'm trying to learn Struts, Spring and Hibernate, I was just wondering if anyone knows any good sources or some examples that makes use of all the technologies (like a small web application).
Thanks.
…
1
vote
1answer
43 views
ClassCastException trying to cast retrieved JPA object to concrete class
I am not certain what I am doing wrong, but I have a class that has a class within it, so when I save the Skill class the user class also gets created, so when I do the join and I want to pull …
1
vote
6answers
166 views
What is the correct way of overriding hashCode () and equals () methods of persistent entity?
I have a simple class Role:
@Entity
@Table (name = "ROLE")
public class Role implements Serializable {
@Id
@GeneratedValue
private Integer id;
@Column
private String roleName;
…
0
votes
2answers
55 views
JPA Spring Hibernate Dao List problem
I am using JPA/Spring/Hibernate as my persistence mechanism for my application. Currently I am running into unit test problems where when I ask for some objects I get the right amount returned from …
