Tagged Questions

4
votes
3answers
699 views

high performance hibernate insert

I am working on a latency sensitive part of an application, basically i will receive a network event transform the data and then insert all the data into the DB. After profiling i see that basically ...
2
votes
3answers
3k views

Hibernate 3.0 + ElementCollection class missing

I created a small desktop project using Hibernate, to understand how enterprise patterns are applied in there. I'm using annotations, and wrote a class to wrap my session factory public class ...
1
vote
3answers
2k views

Hibernate: org.hibernate.AssertionFailure: null id in com.xxx.Bean entry

I was faced to the following error: com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract void com.xxx.Service.save(com.xxx.Bean)' threw an unexpected exception: ...
1
vote
6answers
702 views

Database record reverting after manual change

Problem solved: Thanks guys, see my answer below. I have a website running in Tomcat 5.5 hooked up to a MySQL5 database using Hibernate3. One record simply refuses to keep any changes performed on ...
0
votes
1answer
26 views

Required a Project with Struts2 and Hibernate3(Using .hbm file) implemented

Can anyone please point me at a small project which has a good implementation on Struts 2 and Hibernate 3 (.hbm file not with annotations)?
0
votes
1answer
28 views

Hibernate add sequence based on date

I have this table on Sql Server id int journal_date datetime sequence int What im trying to do is generate a sequence based on the datetime value. example of the database | id | journal_date | ...
0
votes
2answers
98 views

Enum type Hibernate 3

I am getting started with Hibernate, and I am getting the following error for an entity which is supposed to have an enum type. java.lang.IllegalArgumentException: No enum const class ...
0
votes
1answer
108 views

Hibernate Query API - criteria on property of a key in map

Let's say I have such model: public class ProjectModel { ... private Map<UserModel, ProjectUserRelations> usersRelations = new HashMap<UserModel, ProjectUserRelations>(); ...
0
votes
1answer
156 views

named parameters in a subquery in hibernate

how can I pass a parameter to a subquery in hibernate? I am trying this but I get an exception that :currentDate does not exist as a named parameter in (...[query]...) even though the query clearly ...
0
votes
1answer
56 views

How to make service use particular txAdvice in Spring?

I'm trying to upgrade my project and so I've come to transactions. This is how I did it up to now. <bean id="userServiceTarget" class="com.forgin.service.UserServiceImpl"> <property ...
0
votes
4answers
149 views

When to use transactions in Spring with Hibernate?

Upgrading my project I'm thinking here about transactions. Well the thing is I'm not quite sure when should I use the transactions for my Hibernate queries in Spring. Not that I completely don't ...
0
votes
2answers
368 views

hibernate query returning result set problem

i have fired a query in hibernate which returning a list...having size 25 but when i m going to iterate list it and printing it printing 1st element 25 times...not iterating through next element here ...
0
votes
2answers
168 views

Hibernate get Collection from another session

Hi i've been getting the infamous "no session or session was closed" i know that is because i am trying to invke a collection of a hibernate persisted object in another session, so is there a way to ...
0
votes
2answers
377 views

How to map derived identities in hibernate 3?

I have the following situation: @Entity class A{ @Id @SequenceGenerator(name = "SEQ_AID", sequenceName = "SEQ_AID") @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_AID") ...
0
votes
4answers
3k views

How to solve hibernate error: Repeated column in mapping for entity?

HI, I have the following model: @Entity class Flight{ private Airport airportFrom; private Airport airportTo; @OneToOne(fetch=FetchType.LAZY,optional=false) public Airport getAirportFrom(){ ...
0
votes
2answers
448 views

How to keep hibernate3-maven-plugin HBM2DDL from printing to console

I used the hibernate3-maven-plugin to automatically create a SQL script I can use to create a database schema in a new database. I do this via the hbm2ddl tool. I thought that when I instructed it ...