BoneCP is a fast, free, open-source, Java database connection pool (JDBC Pool) library available at http://jolbox.com
0
votes
1answer
16 views
Soap Server WSDL viewable in browser, but wont load any functions in SoapUI
I just recently installed BoneCP on my soap server to prevent too many mysql connections being made when people hit the soap server. Before I switched over to boneCP the soap server was working, ...
0
votes
1answer
25 views
BoneCP in tomcat context.xml throws an exception about being unable to find a jdbc driver
This is the configuration that I'm trying to replace
<Resource auth="Container"
driverClassName="net.sourceforge.jtds.jdbcx.JtdsDataSource"
maxActive="100"
maxIdle="30"
...
1
vote
0answers
25 views
guava and bonecp in webstart giving security exception
I have an APP that is run via java webstart. It is using the BoneCP library which is dependent on the Google guava library. When it starts to down load it fails on the guava jar file. Antiviruses ...
3
votes
1answer
97 views
BoneCP shuts down automatically in the middle of the work
We have an Oracle 11g database, a web service that uses hibernate. We recently switched to BoneCP for connection pooling but there seems to be something wrong and the BoneCP shuts down in the middle ...
0
votes
0answers
17 views
Session turns Tx-Idle on Netezza when BoneCP connection is not closed.
I am using BoneCP connection Pooling and getting the Netezza status turned to "Tx-Idle" when am not closing the connection.
I have a situation where I need to use the same connection for the next ...
2
votes
1answer
50 views
Sbt package manager not resolving at Heroku
Hi guys im trying to add a new bonecp version to my play framework 2.0.4 app at heroku,
but im getting
[info] downloading ...
0
votes
1answer
53 views
BoneCP SLF4J ClassNotFoundException
I am testing BoneCP along with other Connection pool solutions and I am having trouble getting BoneCP to work. (Using a simple Java application in Eclipse)
The code I am using is copied from the ...
0
votes
0answers
33 views
Could incorrect maxConnectionIdle and connectionTimeout settings be the reason of Communications Link Failure error?
Good day everybody!
Im using BoneCP connection pool with such configurations:
config.setJdbcUrl(url);
config.setUsername(userName);
config.setPassword(userPwd);
...
1
vote
1answer
205 views
MysqlConnectionPoolDataSource or c3p0 like library?
What's the difference between MysqlConnectionPoolDataSource and C3p0, BoneCP or dbcp library for connection pooling? I don't understand why use a library if mysql connector give connection pooling.
2
votes
2answers
128 views
Play Framework 2.0. Upgrade bonecp
There is a project in Scala for Play 2.0. I've met a known bug with bonecp 0.7.1 database connections and want to upgrade this library to version 0.8.0.
In file /project/plugins.sbt I've added the ...
0
votes
3answers
218 views
Heroku/Play/BoneCp connection issues
I have an app on heroku that uses play. It was working fine for the longest time, but somewhat recently I started getting this:
Caused by: java.sql.SQLException: Timed out waiting for a free ...
0
votes
1answer
181 views
Cannot change transaction read-only property in the middle of a transaction
I am using BoneCP with Postgresql and Spring JdbcTemplate. When JdbcTemplate executes query and then tries to close the connection, it gets this exception:
org.postgresql.util.PSQLException: ...
1
vote
1answer
29 views
BoneCP JDK 5 Maven Depedendency
How do you have to configure maven to pull down the JDK5 version of BoneCP?
0
votes
1answer
165 views
How to avoid minutes delay during Tomcat startup
We're experiencing a significant delay during server startup of minutes on a number of production servers but cannot reproduce this in a test environment. Does anyone have any suggestions on how to ...
0
votes
1answer
157 views
BoneCP sometimes cannot get config from spring property holder
I have been facing this issue for a while now. My config is as following
<!-- Load Properties Files -->
<context:property-placeholder location="classpath:*-${environment}.properties" ...
0
votes
0answers
37 views
using non-closing mybatis session with bonecp
I have a dedicated mybatis session which is created at application startup and continue to remain opened throught the application lifetime (it is only closed at application destruction time), the ...
0
votes
0answers
91 views
BoneCP Statement Logging
After reading this related question: BoneCP not logging SQL statements
I still keep receive the following message:
[main] WARN com.jolbox.bonecp.BoneCPConfig - LogStatementsEnabled is set to true, ...
1
vote
1answer
151 views
How do I prevent a database call from hanging in jdbcTemplate.query when the database is not available?
I am using the Spring JDBC template and a BoneCP Connection Pool. When I purposely set the JDBC URL to an invalid value (to test how my system works on failed database connectivity), it throws an ...
0
votes
1answer
196 views
How to detect closed connections in connection pool?
Imagine having an active BoneCP jdbc connection pool when the network connectivity goes down, then comes back after a minute. In order to automatically reconnect and recreate the pool, how should ...
1
vote
1answer
166 views
A better explanation for partitionCount in BoneCP
From official BoneCP doc: http://jolbox.com/index.html?page=http://jolbox.com/configuration.html
partitionCount In order to reduce lock contention and thus improve performance, each incoming ...
0
votes
1answer
89 views
Issues in building BoneCP using maven
I downloaded the latest BoneCP source code from following Github URL:
https://github.com/wwadge/bonecp/archive/master.zip
When I try to build this source using maven there are some issues in ...
2
votes
1answer
221 views
Is there a way to reload Tomcat's Connection Pool at runtime?
My case is as follow:
I have to maintain a server, with Tomcat(6) as web server, that has a bunch of webapps on it. These webapps are maintained by others. Our server has a connection to another ...
1
vote
0answers
310 views
Mybatis, BoneCP, Spring: SQLBuilder Memory leak issue in Tomcat 7.0.* [closed]
I'm working on a project using Spring, Mybatis and BoneCP.
Every time I stop Tomcat server, I observe the following mem leak issues:
Dec 23, 2012 5:20:21 PM ...
2
votes
2answers
474 views
BoneCP with JSF Spring Hibernate Configuration
I tried to use BoneCP with my JSF-Spring-Hibernate combination, following BoneCP configurations on their website.
I am using Intellij as IDE and i added framework supports directly into project but ...
1
vote
3answers
300 views
Play Framework 2.0.4 and BoneCP - so how to avoid connections leak?
There is just one place in my app, that uses connections.
It looks something like this:
Connection conn = Db.getConnection();
try
{
// do some job
}
finally
{
conn.close();
}
So, connection ...
1
vote
2answers
536 views
Play2.0 returns “SQLException: Timed out waiting for a free available connection.”
I have been using Play 2.0.2 in order to create a Java application. For a few days I'm running into a problem. After ~100 request the server starts to throw this exception:
[[SQLException: Timed ...
1
vote
1answer
658 views
BoneCP doesn't recover from broken connection
I have a problem with BoneCP (0.7.1 RELEASE). I though that BoneCP.getConnection() ensures it would return Connection object assuming that DB is alive.
Here is how I configured my pool
private void ...
0
votes
1answer
352 views
Why isn`t BoneCP establishing a connection?
I'm trying to test BoneCP using the test code on their website. However, I don't seem to be able to actually establish a connection to the server hosted online. My code is below maybe I'm making ...
0
votes
0answers
175 views
How to setup C3P0 or BoneCP Connection Pooling with Logback on Mysql
I am working on a multithreaded application at the moment. I have started using the Logback's DbAppender to log to a MYSQL database in a test environment.
A high number of threads are logging and ...
3
votes
1answer
182 views
BoneCP & Derby - How to properly shutdown
I have:
BoneCP CONNECTION_POOL = ...;
CONNECTION_POOL.getConfig().setJdbcUrl("jdbc:derby:database...;shutdown=true");
Connection connection = CONNECTION_POOL.getConnection();
connection.close();
...
2
votes
1answer
494 views
Play! 2.0 - BoneCP Returning Closed Connections
I have an interesting issue which I have not been able to resolve. I am using Play! 2.0.4 and using the integrated BoneCP connection pool to get the DB connections. However, for some reason, BoneCP ...
1
vote
2answers
144 views
BoneCP and Netty basics
In order to efficiently use connection pooling via BoneCP while programming a Netty server- where is the correct place for the connection pool and where to get a new connection for that pool?
At a ...
0
votes
1answer
126 views
Resizeing BoneCP pool
Is it possible to grow and shrink the pools dynamically.
I would like to be able to grow the pool should it be needed and then shrink it down again when load is less all without restarting the ...
0
votes
1answer
385 views
BoneCP not logging SQL statements
I'm using an embedded Jetty 8 Server with the jetty-maven-plugin. I cannot get BoneCP to log the statements that are executed. Am I doing anything wrong? Are there any workarounds?
This is my ...
1
vote
1answer
773 views
Java BoneCP MySQL connection timing out
I have an application set up to pool mysql connections with BoneCP. Right now, the application isn't getting a ton of use, so the connections aren't used as frequently. After a certain amount of time, ...
0
votes
0answers
242 views
too many threads BoneCP
I develop web service with jax-rs, jersey, spring and BoneCP. I'm using a Postgres database.
Gradually, as the web services are called, the Java process (Jetty server) uses more RAM, then kills the ...
3
votes
1answer
851 views
Monitoring Bone cp Connection pool
We are trying to move to bonecp connection pool from c3p0. we use hibernate as the ORM tool.
Now, is there any way to monitor the connections in boncecp like getting to know the maximum available and ...
0
votes
0answers
114 views
How to deal with tcp packet drop - tomcat dbcp connection pool
Is there any option provided in tomcat JDBC Connection Pool, to deal with TCP packet drop.
on setting following rule in IP table. Communication link failure is received after very long delay
sudo ...
4
votes
3answers
966 views
Fast and reliable alternatives to bonecp connection pool
I was using BoneCP for my Java projects. But, unfortunately, I discovered that this pool is unable to recover after the database failure. I am not the only one with such problem (just look at the ...
0
votes
1answer
217 views
BoneCP Statement Handle Cannot Be Cast JDBC
I am trying to setup a boneCP connection and I am getting the following error message:
Exception in thread "main" java.lang.ClassCastException: com.jolbox.bonecp.StatementHandle cannot be cast to ...
0
votes
1answer
235 views
How to properly shutdown Embedded Derby database with BoneCP connection pool
With Derby you're specifically suppose to call:
DriverManager.getConnection("jdbc:derby:myDatabase;shutdown=true");
When you want to shutdown the database. However with BoneCP you do:
BoneCPConfig ...
0
votes
1answer
137 views
Does closing a connection pool in a REST service defeat the purpose of a connection pool in the first place?
I'm using BoneCP for connection pooling jdbc connections to my mysql database. I'm using the bonecp example in my REST application.
If every REST request is opening and closing the connection pool, ...
3
votes
1answer
958 views
BoneCP 0.7.1.RELEASE and hibernate 4.1.*
I try to add BoneCP to hibernate and have:
java.lang.ClassNotFoundException: org.hibernate.connection.ConnectionProvider
I couldn't find this interface in new hibernate packages and have 2 ...
3
votes
1answer
753 views
Using bonecp as Tomcat 5.5 datasource
I try to get Tomcat to use BoneCP as a connection pool because DBCP doesn't work correctly here.
I tried to add it to the context.xml that defines my webapp like this:
<Context path="/reports" ...
0
votes
1answer
501 views
BoneCP is reporting unclosed connections but I'm using try-with-resource everywhere I get a new connection
Where "ds" is a BoneCPDataSource initialized as follows:
final BoneCPDataSource ds = new BoneCPDataSource();
ds.setJdbcUrl("...");
ds.setUser("...");
ds.setPassword("...");
...
2
votes
1answer
2k views
BoneCP correct usage
I've just started using BoneCP and pulled the sample JDBC code from the authors site.
I have a function called getConnection() that returns a connection here is a snippet:
// setup the ...
1
vote
0answers
305 views
Comparing Glassfish Connection Pool With Other Connection Pools
Has anyone done any benchmarking comparing the glassfish connection pool with other fast jdbc connection pools like BoneCP or Tomcat 7 jdbc pool?
I am exploring out ways to create the glassfish ...
0
votes
1answer
255 views
BoneCP does not supply a valid connection if it was created when the database was down
I have a use case where the database (sybase) may be unavailable when bonecp (0.7.1.RELEASE) creates a connection pool. When it is later available however, if my app requests a connection the call ...
0
votes
1answer
352 views
BoneCP Enterprise Use & General Stability
We would like to use BoneCP in our application but as part of the assesment process I need to answer the following questions
Are there known examples of BoneCP being deployed on enterprise scale ...
0
votes
1answer
706 views
BoneCp no suitable driver found Spring 3.1 Hibernate 4.0
I'm currently using BoneCP as a connection pool manager since there is no real alternative (c3p0 is dead). I'm using hibernate 4 and spring 3.1 and everything works fine. The only thing that bothers ...
