package impl_genericobjectpool_test;
/**
* <p>Title: 基本对象池(org.apache.commons.pool.impl.GenericObjectPool)的使用 </p>
* <p>Description:
* 测试 org.apache.commons.pool.impl.GenericObjectPool 和 org.apache.commons.pool.PoolableObjectFactory的使用.</p>
* <p>基本对象池的使用,
* <LI>class TestGenericObjectPool 表示一个测试使用对象池的具体例子
* <LI>class WdzPoolableObjectFactory 表示1个自己定义的生成对象的工厂
* <LI>class Student 表示 需要使用对象池来维护的类</p>
* <p>
* 引用了 common-collcetions-2.1 ,commons-pool-1.1
* </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: netsky</p>
* @author wdz( hotmail =wdz123@hotmail.com)
* @version 1.0
* @see {@link TestGenericObjectPool},
* org.apache.commons.pool.impl.GenericObjectPool,org.apache.commons.pool.PoolableObjectFactory
*/
public class Student {
private String sex;
private String name;
private int studentid;
private int age;
public Student() {
}
public static void main(String[] args) {
Student student1 = new Student();
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getStudentid() {
return studentid;
}
public void setStudentid(int studentid) {
this.studentid = studentid;
}
public void clear() {
studentid = 0;
name = "";
age = 0;
sex = "";
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String toString() {
return "id =" + studentid + ",name =" + name + ",age=" + age + ",sex=" +
sex;
}
}
Class WdzPoolableObjectFactory --code
package impl_genericobjectpool_test;
import org.apache.commons.pool.impl.*;
import org.apache.commons.pool.*;
/**
* <p>Title: 基本对象池(org.apache.commons.pool.impl.GenericObjectPool)的使用 </p>
* <p>Description:
* 测试 org.apache.commons.pool.impl.GenericObjectPool 和 org.apache.commons.pool.PoolableObjectFactory的使用.</p>
* <p>基本对象池的使用,
* <LI>class TestGenericObjectPool 表示一个测试使用对象池的具体例子
* <LI>class WdzPoolableObjectFactory 表示1个自己定义的生成对象的工厂
* <LI>class Student 表示 需要使用对象池来维护的类</p>
* <p>
* 引用了 common-collcetions-2.1 ,commons-pool-1.1
* </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: netsky</p>
* @author wdz( hotmail =wdz123@hotmail.com)
* @version 1.0
*/
public class WdzPoolableObjectFactory
implements PoolableObjectFactory {
/**
* 创建对象实例。同时可以分配这个对象适用的资源。
* **/
public Object makeObject() throws Exception {
return new Student();
};
/**
* 销毁对象,实际上提供了释放对象占用资源的接口。
* destroyObject is invoked on every instance when it is being "dropped"
* from the pool (whether due to the response from validateObject,
* or for reasons specific to the pool implementation.)
* */
public void destroyObject(Object obj) throws Exception {
}
/***
* 这个方法一般在 activateObject 方法执行后调用
* 检查对象的有效性
* validateObject is invoked in an implementation-specific fashion to
* determine if an instance is still valid to be returned by the pool.
* It will only be invoked on an "activated" instance.
* **/
public boolean validateObject(Object obj) {
return true;
}
/**
* 激活一个对象。
* activateObject is invoked on every instance before it is returned from the pool.
* **/
public void activateObject(Object obj) throws Exception {
}
/**
* 挂起一个对象
* passivateObject is invoked on every instance when it is returned to the pool
* **/
public void passivateObject(Object obj) throws Exception {
if (obj instanceof Student) {
( (Student) obj).clear();
}
}
}
Class TestGenericObjectPool -- Code
package impl_genericobjectpool_test;
import org.apache.commons.pool.impl.*;
import org.apache.commons.pool.*;
/**
* <p>Title: 基本对象池(org.apache.commons.pool.impl.GenericObjectPool)的使用 </p>
* <p>Description:
* 测试 org.apache.commons.pool.impl.GenericObjectPool 和 org.apache.commons.pool.PoolableObjectFactory的使用.</p>
* <p>基本对象池的使用,
* <LI>class TestGenericObjectPool 表示一个测试使用对象池的具体例子
* <LI>class WdzPoolableObjectFactory 表示1个自己定义的生成对象的工厂
* <LI>class Student 表示 需要使用对象池来维护的类</p>
* <p>
* 引用了 common-collcetions-2.1 ,commons-pool-1.1
* </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: netsky</p>
* @author wdz( hotmail =wdz123@hotmail.com)
* @version 1.0
*/
public class TestGenericObjectPool {
private void testBorrowObject(GenericObjectPool pool, int kk) {
try {
Student[] student = new Student[10];
for (int i = 0; i < 10; i++) {
student = (Student) (pool.borrowObject());
student.setStudentid(i * 10000 + kk);
student.setAge(i * 1000 + kk);
student.setName("wdzname" + i * 100 + kk);
}
for (int i = 0; i < 10; i++) {
System.out.println("student[" + i + "]=" + student);
pool.returnObject(student);
if (i == 9) {
//察看对象回到对象池的状态
System.out.println("****student[9]=" + student[9]);
}
}
}
catch (Exception ex) {
ex.printStackTrace();
}
}
public TestGenericObjectPool() {
org.apache.commons.pool.PoolableObjectFactory factory = new
WdzPoolableObjectFactory();
GenericObjectPool pool = new GenericObjectPool(factory, 4000 * 10,
GenericObjectPool.WHEN_EXHAUSTED_GROW, 3000 * 10, true, true);
System.out.println("group1";
testBorrowObject(pool, 1);
System.out.println("group2";
testBorrowObject(pool, 2);
}
public static void main(String[] args) {
TestGenericObjectPool test = new TestGenericObjectPool();
}
}
分享到:
相关推荐
import org.apache.commons.pool2.impl.GenericObjectPool; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.apache.commons.pool2.PooledObjectFactory; import org.apache.commons....
2. **对象池实现**:`org.apache.commons.pool2.impl.GenericObjectPool` 和 `org.apache.commons.pool2.impl.GenericKeyedObjectPool` 是基础的对象池实现,它们可以管理任意类型的对象。 3. **对象生命周期管理**...
在`org.apache.commons.pool.jar`中,你可以找到`org.apache.commons.pool.impl.GenericObjectPool`这样的类,它是对象池的基类,提供了对象的创建、借用、归还和回收等功能。这个库在数据库连接池(如C3P0、DBCP)...
在Apache Commons Pool中,`GenericObjectPool`是最常用的对象池实现,它支持基本的对象生命周期管理,如最大池大小、空闲超时等配置。要使用`GenericObjectPool`,你需要实现`PooledObjectFactory`接口,该接口定义...
这里,`GenericObjectPool`是Apache Commons Pool提供的一个基本对象池实现。 3. **使用对象池**:在需要的地方,通过Spring的依赖注入获取并使用池化的对象。例如,如果你的DataSource是池化的,你可以在业务逻辑...
Jedis是Redis官方推荐的Java客户端,用于与Redis数据存储系统进行交互,而commons-pool2则是Apache Commons项目的一个组件,提供对象池服务,常用于管理资源的复用,例如数据库连接池或在本例中,Jedis实例的池化。...
当myeclipse出现java.lang.NoClassDefFoundError: org/apache/commons/pool/impl/GenericObjectPool错误时下载该jar包放在lib下 即可!!
该错误信息表明,在初始化Spring容器时遇到了问题,具体是在创建名为`dataSource`的Bean时失败,进一步的原因是找不到`org.apache.commons.pool.impl.GenericObjectPool`类的定义。这个类是Apache Commons Pool库中...
import org.apache.commons.pool2.impl.GenericObjectPool; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; public class MQHelper { private static final ObjectPool<ConnectionFactory> ...
nested exception is java.lang.NoClassDefFoundError: org/apache/commons/pool/impl/GenericObjectPool 这个错误是由于Spring无法加载dataSource bean,导致ApplicationContext无法启动。解决方法是检查...
常见的Jedis连接池实现是`org.apache.commons.pool2.impl.GenericObjectPool`。配置包括: - `maxTotal`: 最大连接数。 - `maxIdle`: 最大空闲连接数。 - `minIdle`: 最小空闲连接数。 - `testOnBorrow`: 借出...
import org.apache.commons.pool.impl.GenericObjectPool.Config; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.Transaction; /** * @author Teaey */ ...
java.lang.NoClassDefFoundError: org/apache/commons/pool/impl/GenericObjectPool - **原因**:表示类路径中缺少Apache Commons Pool的依赖。 - **解决办法**: - 添加Apache Commons Pool的依赖至项目中。 - ...