Source Code Cross Referenced for AbandonedConfig.java in  » Database-JDBC-Connection-Pool » Connection-Pool-DBCP » org » apache » commons » dbcp » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database JDBC Connection Pool » Connection Pool DBCP » org.apache.commons.dbcp 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *      http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:
018:        package org.apache.commons.dbcp;
019:
020:        /**
021:         * Configuration settings for handling abandoned db connections.
022:         *                                                            
023:         * @author Glenn L. Nielsen           
024:         * @version $Revision: 482015 $ $Date: 2006-12-03 19:22:09 -0700 (Sun, 03 Dec 2006) $
025:         * @deprecated This will be removed in a future version of DBCP.
026:         */
027:        public class AbandonedConfig {
028:
029:            /**
030:             * Whether or not a connection is considered abandoned and eligible
031:             * for removal if it has been idle longer than the removeAbandonedTimeout
032:             */
033:            private boolean removeAbandoned = false;
034:
035:            /**
036:             * Flag to remove abandoned connections if they exceed the
037:             * removeAbandonedTimeout.
038:             *
039:             * Set to true or false, default false.
040:             * If set to true a connection is considered abandoned and eligible
041:             * for removal if it has been idle longer than the removeAbandonedTimeout.
042:             * Setting this to true can recover db connections from poorly written    
043:             * applications which fail to close a connection.
044:             *
045:             * @return true if abandoned connections are to be removed
046:             */
047:            public boolean getRemoveAbandoned() {
048:                return (this .removeAbandoned);
049:            }
050:
051:            /**
052:             * Flag to remove abandoned connections if they exceed the
053:             * removeAbandonedTimeout.
054:             *
055:             * Set to true or false, default false.
056:             * If set to true a connection is considered abandoned and eligible   
057:             * for removal if it has been idle longer than the removeAbandonedTimeout.
058:             * Setting this to true can recover db connections from poorly written
059:             * applications which fail to close a connection.
060:             *
061:             * @param removeAbandoned true means abandoned connections will be
062:             *   removed
063:             */
064:            public void setRemoveAbandoned(boolean removeAbandoned) {
065:                this .removeAbandoned = removeAbandoned;
066:            }
067:
068:            /**
069:             * Timeout in seconds before an abandoned connection can be removed
070:             */
071:            private int removeAbandonedTimeout = 300;
072:
073:            /**
074:             * Timeout in seconds before an abandoned connection can be removed.
075:             *
076:             * Defaults to 300 seconds.
077:             *
078:             * @return abandoned timeout in seconds
079:             */
080:            public int getRemoveAbandonedTimeout() {
081:                return (this .removeAbandonedTimeout);
082:            }
083:
084:            /**
085:             * Timeout in seconds before an abandoned connection can be removed.
086:             *
087:             * Defaults to 300 seconds.
088:             *
089:             * @param removeAbandonedTimeout abandoned timeout in seconds
090:             */
091:            public void setRemoveAbandonedTimeout(int removeAbandonedTimeout) {
092:                this .removeAbandonedTimeout = removeAbandonedTimeout;
093:            }
094:
095:            /**
096:             * Determines whether or not to log stack traces for application code
097:             * which abandoned a Statement or Connection.
098:             */
099:            private boolean logAbandoned = false;
100:
101:            /**
102:             * Flag to log stack traces for application code which abandoned
103:             * a Statement or Connection.
104:             *
105:             * Defaults to false.
106:             * Logging of abandoned Statements and Connections adds overhead
107:             * for every Connection open or new Statement because a stack
108:             * trace has to be generated.
109:             * 
110:             * @return boolean true if stack trace logging is turned on for abandoned
111:             *  Statements or Connections
112:             *
113:             */
114:            public boolean getLogAbandoned() {
115:                return (this .logAbandoned);
116:            }
117:
118:            /**
119:             * Flag to log stack traces for application code which abandoned
120:             * a Statement or Connection.
121:             *
122:             * Defaults to false.
123:             * Logging of abandoned Statements and Connections adds overhead
124:             * for every Connection open or new Statement because a stack
125:             * trace has to be generated.
126:             * @param logAbandoned true turns on abandoned stack trace logging
127:             *
128:             */
129:            public void setLogAbandoned(boolean logAbandoned) {
130:                this.logAbandoned = logAbandoned;
131:            }
132:
133:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.