1
vote
1answer
36 views
Hibernate: Persisting Objects
Hi,
I am trying to create new Event objects to be persisted in the database via Hibernate. The below code successfully creates one event, but when session.save(evt) is called, I g …
0
votes
2answers
24 views
Found shared references to a collection org.hibernate.HibernateException
Hi,
I got this error message :
error: Found shared references to a collection: Person.relatedPersons
when I tried to save addToRelatedPersons(anotherPerson) :
person.addToRelate …
0
votes
4answers
59 views
Hibernate in Servlet causesNoClassDefFoundError: org/slf4j/LoggerFactory
I have a Java (6) application which uses Hibernate (V3.3.2) to read data from HSQLDB, which i build and debug/run with Eclipse (V3.5.1), and it works fine.
I then created a GWT (V …
0
votes
3answers
35 views
Problem with AnnotationSessionFactoryBean
I use the following configuration for initiating my SessionFactory:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" …
0
votes
1answer
46 views
One-to-Many Unidirectional Parent-Child ID Cascade Save
When trying to save an ID from my parent class into a child class, I keep getting the error
"ERROR - Field 'parent_id' doesn't have a default value"
I have tried all types of mapp …
0
votes
4answers
75 views
Cheap/free query tool for multi-database Java/hibernate developer
I'm very interesting in inexpensive (better free) SQL query tool for working with multiple databases.
Generally speaking it should works with all databases which Hibernate suppor …
1
vote
1answer
42 views
Hibernate HQL: how to use a complex left join fetch
Hi all,
I want to add a left join on TASK table when the following condition occurs:
LEFT JOIN FETCH
PROMPT p on (t.id = p.task.id and p.applicationName in ('XXX …
0
votes
2answers
18 views
netbeans 6.5.1 reverse engine Oracle entity
i reverse engined entity class but the primary key is not anottaed with GeneratedValue . my table is created on oracle. do i need to add contraint on the table primary key for a …
2
votes
2answers
42 views
can I tell Hibernate a class is immutable so it will share the objects to save cost of construction?
I have some classes that represent immutable objects (Quantity, Price, Probability). Is there some way to tell Hibernate that the objects will never change so it can re-use object …
0
votes
1answer
27 views
Websphere Application Server Data Source
We are facing a strange problem with Websphere Application Server Data Source.
Environment:
Websphere Application Server (6.1)
Linux
Liferay Portal (5.2)
Oracle 9i
Hibernate 3.0 …
1
vote
3answers
30 views
hibernate post initialization
I would like to initialize class members of a persisted object as soon as Hibernate loads the object from the database.
How can I do this ?
More specifically: In the following pe …
1
vote
1answer
16 views
Hibernate Criteria API equivalent for “elements()”
Is it possible to implement the following query using Criteria API?
select order from ORDER as order,ITEM as item
where item.itemID like 'ITM_01' and item in elements(order.item …
1
vote
2answers
34 views
“Integration” between Rails’ ActiveRecord and Java’s Hibernate
Hi everybody: let me do a bit of "concept mining" here: I am involved in mantaining/extending an application whose functionality is distributed across several servers. For example, …
0
votes
1answer
33 views
Cast function for Hibernate
Hi, all
I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BE …
0
votes
1answer
20 views
hibernate subclass one to one mapping
hi all, i got a complicate mapping, i think it suppose to work...but why it compile A.d column is not existed???
public abstract Class A {
private Integer Id;
..
...
}
public Cla …
