Source Code Cross Referenced for SimpleConnectionPool.java in  » JMX » jfoxmx » org » huihoo » jfox » pool » connection » 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 » JMX » jfoxmx » org.huihoo.jfox.pool.connection 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* JFox, the OpenSource J2EE Application Server
002:         *
003:         * Copyright (C) 2002 huihoo.org
004:         * Distributable under GNU LGPL license
005:         * See the GNU Lesser General Public License for more details.
006:         */
007:
008:        package org.huihoo.jfox.pool.connection;
009:
010:        import java.sql.Connection;
011:
012:        import org.huihoo.jfox.pool.ObjectPool;
013:        import org.huihoo.jfox.pool.ObjectFactory;
014:        import org.huihoo.jfox.pool.SimpleObjectPool;
015:        import org.huihoo.jfox.pool.PoolableObject;
016:        import org.huihoo.jfox.service.ComponentSupport;
017:
018:        /**
019:         * Get connections from this pool, all connections get from this pool can be recycled
020:         * for resue.
021:         * @author <a href="mailto:kelvin_wym@hotmail.com">Kelvin Wu</a>
022:         */
023:        public class SimpleConnectionPool extends ComponentSupport implements 
024:                SimpleConnectionPoolMBean, ConnectionPool {
025:            // A generic object pool used by the connection pool.
026:            private ObjectPool pool = null;
027:            private ConnectionFactory factory = null;
028:
029:            /**
030:             * Default constructor
031:             * @param dbDriver database driver class name.
032:             * @param dbURL database url for connect to the database.
033:             * @param user user name.
034:             * @param password password
035:             */
036:            public SimpleConnectionPool(String dbDriver, String dbURL,
037:                    String user, String password) throws Exception {
038:                factory = new ConnectionFactory(SimplePoolableConnection.class,
039:                        PoolableConnectionInvocationHandler.class);
040:                factory.setDbDriver(dbDriver);
041:                factory.setDbURL(dbURL);
042:                factory.setUser(user);
043:                factory.setPassword(password);
044:                pool = new SimpleObjectPool(factory);
045:            }
046:
047:            /**
048:             * Get the pooled connection that will be used by user.
049:             * @return Connection that will be used by user
050:             */
051:            public Connection getConnection() throws Exception {
052:                PoolableObject obj = pool.retrieveObject();
053:                // 设置这个 PoolableConnection 所在的 pool, 以便在调用 connection.close 的时候,调用 pool.restore
054:                ((PoolableConnection) obj).setPool(pool);
055:                return (Connection) obj;
056:            }
057:
058:            protected void doInit() throws Exception {
059:                pool.init();
060:            }
061:
062:            protected void doDestroy() throws Exception {
063:                pool.destroy();
064:            }
065:
066:            public void clear() {
067:                pool.clear();
068:            }
069:
070:            public ObjectFactory getObjectFactory() {
071:                return pool.getObjectFactory();
072:            }
073:
074:            public String getObjectClass() {
075:                return pool.getObjectClass();
076:            }
077:
078:            public int getWorking() {
079:                return pool.getWorking();
080:            }
081:
082:            public int getRest() {
083:                return pool.getRest();
084:            }
085:
086:            public void setDbURL(String dbUrl) {
087:                pool.clear();
088:                factory.setDbURL(dbUrl);
089:            }
090:
091:            public String getDbURL() {
092:                return factory.getDbURL();
093:            }
094:
095:            public void setDbDriver(String driver) {
096:                pool.clear();
097:                factory.setDbDriver(driver);
098:            }
099:
100:            public String getDbDriver() {
101:                return factory.getDbDriver();
102:            }
103:
104:            public void setUser(String user) {
105:                pool.clear();
106:                factory.setUser(user);
107:            }
108:
109:            public String getUser() {
110:                return factory.getUser();
111:            }
112:
113:            public void setPassword(String password) {
114:                pool.clear();
115:                factory.setPassword(password);
116:            }
117:
118:            public String getPassword() {
119:                return factory.getPassword();
120:            }
121:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.