From issues-return-66217-archive-asf-public=cust-asf.ponee.io@commons.apache.org Wed Jan 31 01:02:05 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 6275218061A for ; Wed, 31 Jan 2018 01:02:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 52802160C54; Wed, 31 Jan 2018 00:02:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9B7F0160C53 for ; Wed, 31 Jan 2018 01:02:04 +0100 (CET) Received: (qmail 80988 invoked by uid 500); 31 Jan 2018 00:02:03 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 80977 invoked by uid 99); 31 Jan 2018 00:02:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Jan 2018 00:02:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 1FF161A475B for ; Wed, 31 Jan 2018 00:02:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -101.511 X-Spam-Level: X-Spam-Status: No, score=-101.511 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id j_tNddcuqIaW for ; Wed, 31 Jan 2018 00:02:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 8A9225FB5B for ; Wed, 31 Jan 2018 00:02:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C1EABE01AA for ; Wed, 31 Jan 2018 00:02:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 2A5EA240F6 for ; Wed, 31 Jan 2018 00:02:00 +0000 (UTC) Date: Wed, 31 Jan 2018 00:02:00 +0000 (UTC) From: "Tamas Lokucza (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (DBCP-485) Connection hook functionality MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DBCP-485?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D163443= 61#comment-16344361 ]=20 Tamas Lokucza edited comment on DBCP-485 at 1/31/18 12:01 AM: -------------------------------------------------------------- Hi [~garydgregory] I am talking about this interface: [https://github.com/wwadge/bonecp/blob/m= aster/bonecp/src/main/java/com/jolbox/bonecp/hooks/ConnectionHook.java] and= this class:=20 [https://github.com/wwadge/bonecp/blob/master/bonecp/src/main/java/com/jol= box/bonecp/hooks/AbstractConnectionHook.java]=C2=A0 So we need that to able to put our code like logging etc..: - When upon getting a new connection from the JDBC driver (and prior to in= serting into the pool). - When on attempting (and failing) to acquire a connection. - When the connection is about to be completely removed from the pool. Can we get an idea which methods should we override in Apache DBCP code? Regards Tam=C3=A1s was (Author: pstomi): Hi [~garydgregory] I am talking about this interface: [https://github.com/wwadge/bonecp/blob/m= aster/bonecp/src/main/java/com/jolbox/bonecp/hooks/ConnectionHook.java] and= this class:=20 [https://github.com/wwadge/bonecp/blob/master/bonecp/src/main/java/com/jolb= ox/bonecp/hooks/AbstractConnectionHook.java]=C2=A0 So we need that to able to put our code like logging etc..: - Upon getting a new connection from the JDBC driver (and prior to inserti= ng into the pool). - On attempting (and failing) to acquire a connection. - When the connection is about to be completely removed from the pool. Can we get an idea which methods should we override in Apache DBCP code? Regards Tam=C3=A1s > Connection hook functionality > ----------------------------- > > Key: DBCP-485 > URL: https://issues.apache.org/jira/browse/DBCP-485 > Project: Commons Dbcp > Issue Type: Wish > Affects Versions: 2.2.0 > Reporter: Tamas Lokucza > Priority: Minor > > We would like to change our connection pool from BoneCP to Apache DBCP. W= e are facing with the problem that there is no Connection Hook in Apache DB= CP. Methods what we are using from BoneCP Connection Hook: onMarkPossiblyBr= oken, onAcquire, onAcquireFail, onDestroy. Is there any workaround to how w= e can get the same functionality with DBCP? -- This message was sent by Atlassian JIRA (v7.6.3#76005)