Re: Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2011-01-07 Thread Henri Gomez
 I can run a vote for a release, people just need to check it out, and then
 we can release it.

+1

 Personally I like to see it as default for Tomcat 7, as it offers much
 enhancements, and little disadvantages over dbcp
 the code base is so small, that the interest in working on it, makes it a
 bit harder

Filip, will you also produce a Maven artifact ?

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2011-01-04 Thread Henri Gomez
I just see a new tag for jdbc-pool.

I'll be very happy to have such advanced pool on Tomcat but we need
some stable release (and of course artifact deployed to Maven
central).

So what's the status for it, and possible inclusion (as extra) in Tomcat 6.0.x ?

2010/10/28 Henri Gomez henri.go...@gmail.com:
 Several reasons:

 1. It isn't a 100% compatible drop-in replacement. There are some
 features in Commons DBCP that jdbc-pool doesn't provide.

 I was thinking at JDBC pool for Datasources management as an
 alternative to Tomcat DBCP pool based on Common DBCP.

 2. Every time Filip tried to get votes for a release (and the one time I
 did) the release failed to collect sufficient votes.

 May be you could resend a new vote, there is many new commiters today,
 they may be interested.

 There is nothing stopping you using it. Just set the factory attribute
 for the resource.

 I know, but having it bundled with Tomcat is allways better,
 especially when you are working with community edition of Tomcat.

 Also, could it be deployed to Maven repo so it could be used and
 deployed more easily ?

 No. Not until such time as it has an official release. (That doesn't
 stop it being added to the ASF snapshot repo).

 Any date for official release ?
 +1 to have it on ASF snapshot repo.


      dependency
            groupIdorg.apache.tomcat/groupId
            artifactIdjdbc-pool/artifactId
            version1.0.8.5-SNAPSHOT/version
        /dependency

 

 I would also add:
 - SpringSource is using it as the default pool in tc Server. There have
 been a few bugs but it looks stable to me.

 It's a gage of stability.
 Default datasource factory could still use common-dbcp implementation,
 but jdbc-pool could be provided also.

 - Commons is currently re-writing Pool and DBCP and using jdbc-pool as
 the basis.

 Interesting, another sign jdbc-pool is a good implementation.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2011-01-04 Thread Filip Hanik - Dev Lists

On 1/4/2011 9:22 AM, Henri Gomez wrote:

I just see a new tag for jdbc-pool.

I'll be very happy to have such advanced pool on Tomcat but we need
some stable release (and of course artifact deployed to Maven
central).

So what's the status for it, and possible inclusion (as extra) in Tomcat 6.0.x ?


I can run a vote for a release, people just need to check it out, and then we 
can release it.
Personally I like to see it as default for Tomcat 7, as it offers much 
enhancements, and little disadvantages over dbcp
the code base is so small, that the interest in working on it, makes it a bit 
harder

Filip


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2010-10-28 Thread Henri Gomez
Hi to all,

I'm currently experimenting various DBCP pools for Tomcat and wonder
why Filip jdbc-pool is not bundled with Tomcat 6.0.x / 7.0.x ?

Also, could it be deployed to Maven repo so it could be used and
deployed more easily ?

Regards

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2010-10-28 Thread Mark Thomas
On 28/10/2010 11:02, Henri Gomez wrote:
 Hi to all,
 
 I'm currently experimenting various DBCP pools for Tomcat and wonder
 why Filip jdbc-pool is not bundled with Tomcat 6.0.x / 7.0.x ?

Several reasons:

1. It isn't a 100% compatible drop-in replacement. There are some
features in Commons DBCP that jdbc-pool doesn't provide.

2. Every time Filip tried to get votes for a release (and the one time I
did) the release failed to collect sufficient votes.

There is nothing stopping you using it. Just set the factory attribute
for the resource.

 Also, could it be deployed to Maven repo so it could be used and
 deployed more easily ?

No. Not until such time as it has an official release. (That doesn't
stop it being added to the ASF snapshot repo).

I would also add:
- SpringSource is using it as the default pool in tc Server. There have
been a few bugs but it looks stable to me.
- Commons is currently re-writing Pool and DBCP and using jdbc-pool as
the basis.

Mark



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tomcat JDBC Pool in Tomcat 6.0.x / 7.0.x

2010-10-28 Thread Henri Gomez
 Several reasons:

 1. It isn't a 100% compatible drop-in replacement. There are some
 features in Commons DBCP that jdbc-pool doesn't provide.

I was thinking at JDBC pool for Datasources management as an
alternative to Tomcat DBCP pool based on Common DBCP.

 2. Every time Filip tried to get votes for a release (and the one time I
 did) the release failed to collect sufficient votes.

May be you could resend a new vote, there is many new commiters today,
they may be interested.

 There is nothing stopping you using it. Just set the factory attribute
 for the resource.

I know, but having it bundled with Tomcat is allways better,
especially when you are working with community edition of Tomcat.

 Also, could it be deployed to Maven repo so it could be used and
 deployed more easily ?

 No. Not until such time as it has an official release. (That doesn't
 stop it being added to the ASF snapshot repo).

Any date for official release ?
+1 to have it on ASF snapshot repo.


  dependency
groupIdorg.apache.tomcat/groupId
artifactIdjdbc-pool/artifactId
version1.0.8.5-SNAPSHOT/version
/dependency



 I would also add:
 - SpringSource is using it as the default pool in tc Server. There have
 been a few bugs but it looks stable to me.

It's a gage of stability.
Default datasource factory could still use common-dbcp implementation,
but jdbc-pool could be provided also.

 - Commons is currently re-writing Pool and DBCP and using jdbc-pool as
 the basis.

Interesting, another sign jdbc-pool is a good implementation.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org