I have a JPA project that worked. This month I added some data to my database. When I start a normal job (I have been working for several months), I get this error:
Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException Internal exception: java.sql.SQLException: network error IOException : address already in use: connect Error code: 0
I checked my LocalPersistenceFacade, which contains most of the methods that I call, by printing the counter, and I get the exact number of closed and open links there: 457. And then my work crashes. Usually it should go to 601, not 457.
On the database side there is no information related to a possible failure. Everything seems to be correct, but my Java code says something else.
Does anyone have any ideas?
Regards, Jean
source
share