404 on https://commons.apache.org/proper/commons-lang/

2020-08-29 Thread Xeno Amess
The Javadoc API documents are available online: - The current stable release 3.11 [Java 8 and up] - The legacy release 2.6 [Java

Re: [dbcp][pool] Use abort instead of close for abandoned connections?

2020-08-29 Thread Bernd Eckenfels
We have a pool implementation where we had to call abort especially for revoked long running transactions, since they regularly have been locked up in a connection wide synchronized in the close. However we only use it for that case and try to close the objects after the abort anyway. We don’t u

Re: [All] New repo for all proper components as submodules?

2020-08-29 Thread Xeno Amess
I doubt it can pass ci at any time... Gary Gregory 于 2020年8月30日周日 上午6:52写道: > Hi All, > > Any thoughts for or against creating a new git repository which would > contain all 'proper' Commons components as git submodules? > > The idea is to be able to checkout all of Commons 'proper' in one go i

Re: opinions about @NotNull and @Nullable ?

2020-08-29 Thread Miguel Muñoz
Thank you for pointing that out. The IntelliJ annotations used to have Runtime retention, but they now have Class retention. — Miguel Muñoz On Fri, Aug 28, 2020 at 7:54 AM Xeno Amess wrote: > > IntelliJ specifies Runtime retention so they can interact > with IntelliJ's internal JRE, which adds

[All] New repo for all proper components as submodules?

2020-08-29 Thread Gary Gregory
Hi All, Any thoughts for or against creating a new git repository which would contain all 'proper' Commons components as git submodules? The idea is to be able to checkout all of Commons 'proper' in one go in one place. Gary

Re: opinions about @NotNull and @Nullable ?

2020-08-29 Thread Miguel Muñoz
As I see it, the annotations serve two purposes. They clarify for the users where nulls are legal values, and they allow development tools to leverage the information to provide more detailed inspections. Some colleagues have objected to their use claiming that, we don't want to rely on a specific

Re: [dbcp][pool] Use abort instead of close for abandoned connections?

2020-08-29 Thread Gary Gregory
On Sat, Aug 29, 2020 at 2:41 PM Phil Steitz wrote: > > On 8/29/20 11:03 AM, Gary Gregory wrote: > > On Sat, Aug 29, 2020 at 1:35 PM Phil Steitz > wrote: > > > >> A pool-related deadlock was reported recently in [1] to tomcat-user. > >> The OP was using a different pool, but it looks to me like t

Re: [dbcp][pool] Use abort instead of close for abandoned connections?

2020-08-29 Thread Phil Steitz
On 8/29/20 11:03 AM, Gary Gregory wrote: On Sat, Aug 29, 2020 at 1:35 PM Phil Steitz wrote: A pool-related deadlock was reported recently in [1] to tomcat-user. The OP was using a different pool, but it looks to me like the same deadlock could happen with dbcp. The source is arguably a driv

Re: [dbcp][pool] Use abort instead of close for abandoned connections?

2020-08-29 Thread Gary Gregory
On Sat, Aug 29, 2020 at 1:35 PM Phil Steitz wrote: > A pool-related deadlock was reported recently in [1] to tomcat-user. > The OP was using a different pool, but it looks to me like the same > deadlock could happen with dbcp. The source is arguably a driver bug, > but in [2], the driver maintai

[dbcp][pool] Use abort instead of close for abandoned connections?

2020-08-29 Thread Phil Steitz
A pool-related deadlock was reported recently in [1] to tomcat-user.  The OP was using a different pool, but it looks to me like the same deadlock could happen with dbcp.  The source is arguably a driver bug, but in [2], the driver maintainer makes the good point that to avoid the problem in [1