0
votes
1answer
21 views

how to properly close and open a hibernate session

I have the following method that inserts a large batch of records every few seconds. After some time of running I get errors like the following: ERROR: Communications link failure The last packet ...
0
votes
2answers
62 views

MySQL Server terminated and hibernate database connection not closing

I have used the following code to create database connection using Hibernate configuration file. <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property ...
0
votes
1answer
44 views

Does this insert call leak connections [duplicate]

Does this insert call leak connections EntityManagerFactory emf = Persistence.createEntityManagerFactory("foo"); EntityManager em = emf.createEntityManager(); transaction = em.getTransaction(); ...
0
votes
1answer
99 views

Change connection pooling type in grails

I need to change the connection pooling type in my grails application to c3p0. I have searched through the net and also into stack overflow but could not find adequate resources. I know that I need ...
1
vote
1answer
398 views

Java Hibernate Connection Leak

Using Hibernate with Struts2, entire flow is as: hibernate.cfg.xml as: <hibernate-configuration> <session-factory> <property ...
0
votes
0answers
81 views

A controller which gets data by Hibernate (using DAO)only works first time, called from its following jsp , but always works from precedent JSP

here is the problem. looking to the flow, the first JSP page has this link to the controller <a href="doctorgetPatients"> Returning Patient</a> then the following controller ...
2
votes
1answer
254 views

Implement an AbstractMultiTenantConnectionProvider

I'm trying to use hibernate multi-tenancy (from chapter 16). Right now my ExtendedStorageManager uses this method to start a multi-tenant session: public Session getClabSession(int serverId, String ...
0
votes
0answers
465 views

java.lang.IllegalStateException: No value for key bound to thread

This problem occurs time-to-time on our production server in moments of quite heavy concurrent request load (think so, but not sure). And unfortunately we cannot reproduce it for debugging... As you ...
4
votes
2answers
2k views

Connection time out isues after inactivity period

We have an api which uses hibernate as ORM tool and we use c3p0 as the connection pool handler. We have no problems when we are under load. However, we are running out into "unable to obtain a ...
1
vote
1answer
659 views

Why is DBCP still used instead of other Connection Pools?

After reading this article - "Connection pooling options with JDBC: DBCP vs C3P0"; About how Apache DBCP is out of date, not production graded and not supported by hibernate, I'm confused why people ...
0
votes
0answers
152 views

hibernate dbderby connection busy

it's the first question here for me. I'm working on a web service project using hibernate with db derby database and glassfish as application server. Using also eclipse to develop it. here is ...
3
votes
1answer
527 views

HibernateOptimisticLockingFailureException marks connection as 'closed'?

I'm getting the following stack trace: org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException: Object of class [com.btfin.wrapcore.request.MFRequest] with identifier [2850448]: ...
0
votes
1answer
374 views

Hibernate - Getting exception : maximum number of processes (550) exceeded

I am using hibernate 3 along with spring.My Hibernate configurations are as under : hibernate.dialect=org.hibernate.dialect.Oracle8iDialect hibernate.connection.release_mode=on_close But after ...
0
votes
3answers
1k views

Hibernate — Connection refused

I have some Java/Hibernate code that works just fine on my local machine with the database I have installed. However, I've uploaded the code to the Internet on a Glassfish server and I cannot get it ...
0
votes
3answers
101 views

What is the use of a Connection pool and is it harmful? [closed]

For Hibernate we can use a Connection pool to manage connections inside of it. Is the state of the connections inside the pool opened? Or is it closed? And if the connections are open is there a ...
4
votes
2answers
4k views

Why did I need to define a Hibernate-JPA vendor adapter in my Spring application context?

I spent days and days trying to get a working database connection for my Spring/JPA(Hibernate) integration tests, troubleshooting mysterious "No Database Context Found" errors, and I finally got it ...
0
votes
1answer
374 views

Spring + Hibernate + c3p0 + MySql does not timeout if connection to database fails

I am using a combination of Spring, Hibernate and Mysql with c3p0 for connection pooling. My problem is that, the application takes 15-20 minutes to deploy when the database connection parameters are ...
0
votes
1answer
619 views

Jboss Connection pooling or Hibernate Connection pooling

We use Spring + Hibernate in Jboss application server. We have been using Jboss connection pooling for all our application connection pooling needs using the *-ds.xml file as follows ...
0
votes
2answers
2k views

Connect DB2 using Struts, Spring and Hibernate

I integrate struts, spring and Hibetnate together. When I tried connecting to DB2 : <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
1
vote
1answer
515 views

c3p0's max number of connections doesn't work in Linux

I have a java application that uses hibernate for O/R mapping and I also use c3p0 connection pooling that ships together with hibernate. The DB is Oracle. This is in my hibernate.cfg.xml: ...
3
votes
3answers
258 views

How to deal with databases for websites written in Java, more specifically Wicket?

I'm new to website development using Java but I've got started with Wicket and make a little website. I'd like to expand on what I've already made (a website with a form, labels and links) and ...
2
votes
3answers
3k views

How to handle several DB schemas with Hibernate?

In one of my projects, I have an application that manages several clients (or customer if you prefer). For each of them, I have a dedicated schema on a database. However, the application handles only ...
1
vote
1answer
1k views

Hibernate: Connect to MySQL without Username or Password

I am developing a hibernate application that connects to a MySQL database. The customers would like to only specify a connection string, ie: jdbc:mysql://username:passwd@server:port/db_name ...
5
votes
1answer
23k views

Hibernate c3p0 connection pool not timing out idle connections

We have a java server connecting to a MySQL 5 database usingHibernate as our persistence layer which is using c3p0 for DB connection pooling. I've tried following the c3p0 and hibernate ...
2
votes
3answers
807 views

Hibernate session and garbage collector

An object with hibernate session data member when garbage collected, is session's jdbc connection closed? In other words is leaving closing session to garbage collector bad idea?
4
votes
1answer
2k views

How to handle: Communication link failure

We're using Spring 2.5.4/Hibernate 3.2/Websphere Application Server 6.1.0.17. We've deployed the application on an AIX box. The next day when I come in, I try to log into the application. I get ...