Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping.

learn more… | top users | synonyms

0
votes
0answers
2 views

Hibernate, error org.hibernate.util.JDBCExceptionReporter Field 'Variable_ID' doesn't have a default value

I have problem with insert data from one side relationships to other tables and to other side of relationships at the same time I have: Table User with User Entity @Entity @Column(name="USER") ...
0
votes
1answer
8 views

Using hibernate criteria in one to many mapping (Search header table with line table column as one of search criteria)

I have two classes InvoiceHeader and InvoiceLine with a one to many (One InvoiceHeader maps to multiple InvoiceLine) mapping between them. class InvoiceHeader { private int id; private String ...
0
votes
0answers
12 views

EntityManager.merge persistence issue

I have a fairly standard code like this. public class Parent(){ private List<Child> childs; ...... } And in Action Class, I have two methods each of which corresponds to ...
0
votes
1answer
34 views

Infinispan L2 cache custom eviction policy

I am planning to use infinispan as my Hibernate app L2 cache. My all entities has a life cycle attribute [ New -> Run -> Completed ]. Initially my entities are in New state and when time goes it's ...
2
votes
1answer
111 views

How to override default Spring JPA exception translator behavior?

I don't know if this approach is the best or not. But I have a requirement where I need to handle Spring JPA repository (DAO layer) exception. Handle in the sense may be propogate it to UI or may be ...
0
votes
2answers
20 views

batch fetching of hibernate mapped objects

I would like to fetch multiple Hibernate mapped objects from a database in a batch. As far as I know this is not currently supported by Hibernate (or any Java ORM I know of). So I wrote a driver using ...
1
vote
1answer
23 views

hsql from webapp springmvc jpa hibernate

I have hsql server which using its swing manager I can retrieve data fine. jdbc:hsqldb:hsql://localhost:1234/securityweb I have DAO using JPA and when run with its main method as standalone it can ...
0
votes
0answers
20 views

JAR File Fails - Maven & Hibernate Project

I have an app that do simple CRUDs ops (Create, read, update, delete with MySQL). This app is with maven & hibernate. Everything is fine when I debug and execute the app into the IDE (eclipse). ...
0
votes
1answer
23 views

Error when I start my application - Hibernate+spring mvc

I have application with spring mvc + hibernate. All tests It's working but when I try to start my application with tomcat I get an error: HTTP Status 500 - type Exception report message ...
2
votes
1answer
62 views

hibernate closing connections or not?

My code is below. Possibly I am using it many times in similar manner, i.e in simple words, I am managing the session and transaction this way: List<Login> users= null; try{ ...
0
votes
1answer
11 views

override fetch strategies in HQL

I would like to eagerly fetch all fields of an object using HQL, overriding any fetch strategy annotations. Is there any special HQL syntax for doing that? Or do I need to add inner join fetch to each ...
1
vote
0answers
53 views

Spring-Hibernate Self Referencing Table

Let say I have Category table and each category has parent and subcategory. However the parent is optional, so it may not have a parent. CREATE TABLE `Category` ( `categoryID` int(11) NOT NULL ...
0
votes
0answers
14 views

Grails Hibernate 4 cannot manually reconnect unless Connection was originally supplied

I just upgraded my Grails 2.2.1 app to 2.3.0.M1 with Hibernate 4.1.1. I am now getting this error when I try to make any query: java.lang.IllegalStateException: cannot manually reconnect unless ...
1
vote
3answers
39 views

Performance of Graph vs. Relational databases

I am working on a project where tons of graph operations are performed in near real-time. We are currently using Hibernate, MySQL and EhCache but considering moving all the graph-related persistence ...
1
vote
1answer
13 views

How to have Hibernate create tables on startup?

I am using Hibernate with HSQLDB and I have noticed that when the application starts up, no tables get created in HSQLDB. It's not until the first select or the first insert that all the tables get ...
0
votes
0answers
8 views

hilo vs GUIDcomb vs Sequence

Is there any practical experience using the hilo generator for a VERY large number of records? In practice, if you or, for example, restarting your server once a day what ends up being the number of ...
0
votes
1answer
26 views

do all hibernate mapped objects need to be Serializable? [duplicate]

Seems to me that they should, since the database that stores the objects can reside on a remote machine. But apparently it doesn't need to be the case from my experiments. So how does Hibernate handle ...
0
votes
3answers
21 views

Hibernate + embedded database - setup

I have created Java application using Hibernate with this configuration: <hibernate-configuration> <session-factory> <property ...
0
votes
1answer
30 views

Spring roo: Cannot update user data which was inserted by PhpMyAdmin

I use spring roo to build a CMS webapp. This app of course, has user management function. My problem is if I use PhpMyAdmin to insert user information into database and then goto my app to modified ...
2
votes
0answers
313 views

JPA merge() updates only some fields. Other changes are not recognized

This is my first post. So, I hope the question is exciting. I have a java program that uses Swing+JPA to work with a PostgreSQL database. I use EclipseLink JPA 2.0 as my Persistence Provider. My ...
1
vote
3answers
413 views

mysql view not refreshing inside a transaction ( Hibernate/Spring)

I am using Spring for DI and Hibernate for data access on a mySQL database. I have code inside a transaction that inserts a record in a table and then executes a view that queries that table and ...
0
votes
3answers
34 views

PostgreSQL Hibernate and Intellij IDEA results in org.hibernate.QueryException: unexpected char: '"'

I use PostgreSQL, Intellij IDEA, Spring MVC, Hibernate. When I'm trying retrieve list of users from table "Users" I recieve exception like below: SEVERE: Servlet.service() for servlet [idea] in ...
0
votes
2answers
57 views

Annotation @SequenceGenerator and compilation error

I'm .Net programmer but this time I'm working on Java project and I'm encountering some difficulties. This java project isn't mine, it was developed by other developer and it uses Hibernate. When I ...
11
votes
2answers
3k views

Can Hibernate work with MySQL's “ON DUPLICATE KEY UPDATE” syntax?

MySQL supports an "INSERT ... ON DUPLICATE KEY UPDATE ..." syntax that allows you to "blindly" insert into the database, and fall back to updating the existing record if one exists. This is helpful ...
0
votes
1answer
11 views

How can I log the origin of my Hibernate queries?

I'm trying to gather some statistics on my hibernate/JPA usage. I've deployed Jboss-AS 7.1.1.Final with Hibernate-4.1.8, which is used in a JSF2 project. I know I can get overall stats via ...
1
vote
0answers
9 views

hibernate 4.3.0 @OneToMany orphanRemoval=true leaves orphans

I found a lot of discussions on orphanRemoval=true option still leaving orphans, however I do not seem to find the right answer for my problem. I have a Connector class that has a OneToMany relation ...
3
votes
3answers
4k views

Hibernate noob fetch join problem

Hi all I have two classes, Test2 and Test3. Test2 has an attribute test3 that is an instance of Test3. In other words, I have a unidirectional OneToOne association, with test2 having a reference to ...
0
votes
1answer
13 views

NetBeans, GlassFish and Hibernate JPA

On work, im using Eclipse, Jboss and Hibernate JPA. For a smaller, private project I like to use Netbeans, GlassFish and Hibernate JPA. Problem: I want hibernate to generate the tables automagically ...
0
votes
0answers
21 views

Spring with JPA2

I'm working with Spring 3.1 and JPA 2 (with Hibnernate 4). Getting the following error messages, I am not sure about the cause. I have included a copy of the maven file whihc lists all the packages ...
0
votes
2answers
3k views

Hibernate refresh?

I am working with hibernate and mysql to abstract a database for use in a java driven website. I got all my queries to work out just fine using hibernate, but couldn't seem to figure out how to do the ...
3
votes
3answers
9k views

@autowired annotation issue, not injecting bean in class, using Spring3.0, hibernate

following is my class: package com.abc.trade.util; public class StockTraderLogger { static Logger logger = Logger.getLogger("StockTraderLogger"); @Autowired ConfigService ...
0
votes
0answers
10 views

How to do AND operation between Object attributes passed to hibernate query by example?

I used hibernate query by example to check if for object existence but it seems that its working by OR the object attributes, this is my query by example method: public List<T> ...
0
votes
2answers
266 views

How do I configure hibernate ORM on heroku?

Here is what I have in hibernate.cfg.xml <hibernate-configuration> <session-factory> <property name="hibernate.hbm2ddl.auto">update</property> <property ...
1
vote
2answers
48 views
+100

Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration

I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
1
vote
1answer
43 views

Spring + Hibernate + Sql Server connection failing

I am getting the following error when I am using a combination of Spring, Hibernate and SQL Server. 19:17:09,137 ERROR [org.hibernate.tool.hbm2ddl.SchemaValidator] (MSC service thread 1-8) HHH000319: ...
-1
votes
0answers
19 views

Hibernate Entities dosen't work after database modification

i have an application works good ! and i have to change my database structure ! and when i changed it ! and i generate my model classes with hibernate i got this exception ! HCANN000001: Hibernate ...
6
votes
1answer
366 views

JBoss 5.1: Entity classes not found (vfszip)

I am using JBoss 5.1 with Hibernate 3.6, JPA 2.0 and Spring 3.0.5. I use maven to build the EAR file which looks like : AutoTrader.ear -------> META-INF --------------> application.xml ...
1
vote
1answer
26 views

Entities are not mapped

i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception: SEVERE: Servlet.service() for ...
0
votes
1answer
51 views

How to return an empty Object rather than Null when doing a Left Join

I have a field: "Country" of an Entity class that is optional. The country refers to a table containing a list of ids with country attributes. In order to include the rows in my table where no ...
0
votes
4answers
47 views

Can't persist my objects

here's is the problem I have a java class Agence that has a @ManytoOne relationship with my class Reseau . there is my Agence code : package ma.kafil.bank; import java.io.Serializable; import ...
2
votes
4answers
3k views

I am getting the memory leak exception in tomcat console

Aug 29, 2012 12:47:44 PM org.apache.coyote.http11.Http11Protocol pause INFO: Pausing Coyote HTTP/1.1 on http-443 Aug 29, 2012 12:47:44 PM org.apache.coyote.http11.Http11Protocol pause INFO: Pausing ...
23
votes
2answers
13k views

Cannot use identity column key generation with <union-subclass> ( TABLE_PER_CLASS )

com.something.SuperClass: @Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public abstract class SuperClass implements Serializable { private static final long serialVersionUID = ...
0
votes
0answers
13 views

(play 1.2.5-java) Hibernate Envers ValidityAuditStrategy configuration seems ignored

I'm currently working on an application using Play Framework 1.2.5 and Hibernate-envers 3.6.10-Final. This application is suffering from very low performances due to the Default Audit Stretagy used ...
0
votes
2answers
31 views

Issues with my criteria query when calling SQL created function

In my Postgres 9.1 database I have a li table that is mapped by ORM (Hibernate) in the following Li class: package a.b; @Entity @Table(name = "li", schema = "public") ...
0
votes
1answer
30 views

Avoiding outer joins across tables when using joined inheritance with Spring Data JPA

Consider the following classes in a Spring Data JPA (+ Hibernate) application: @Entity @Inheritance(strategy = InheritanceType.JOINED) @Table(name = "person") public class Person { } @Entity ...
1
vote
2answers
32 views

Use entity manager in CDI extension

I want to write a CDI extension which loads some entities from database (which are in fact groovy scripts that implement a certain interface) and provide them as beans, so that it is possible to get ...
1
vote
0answers
17 views

ArrayOutOfBoundsException when using projection in HQL for a java.util.Map in a component

I want to persist the following Event class: public class Event { private Long id; private LocalizableString name = new LocalizableString(); /* setters and getters */ } Into a database with ...
1
vote
0answers
10 views

Hibernate/JPA 2.0 - Table per Class and @EmbeddedId Inheritance

Aware as I am that @Embeddable components inheritance in Hibernate is not supported, I'm trying to find the best strategy to deal with my very custom entity mapping. The story is as follows: I have ...
0
votes
1answer
12 views

hibernate criteria: get a specific class

Assume the following classes model: (written from memory) @Entity @Table(name="BULLETIN_MESSAGE") public class BulletinMessage { @OneToMany @JoinColumn(name="BULLETIN_ID") private ...
1
vote
0answers
19 views

Caching issue with Hibernate EhCache

Our project is using Hibernate 3.0 for DB access. We are using 2nd level cache and query cache to cache the queries and entities.EhCache is used for caching purpose. The DAO method getData() fetches ...

1 2 3 4 5 489