首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

应用动态代理技术构建连接池中的connection

2013-04-09 
使用动态代理技术构建连接池中的connectionInvocationHandler接口: public interface InvocationHandler {

使用动态代理技术构建连接池中的connection
InvocationHandler接口: public interface InvocationHandler { public Object invoke(Object proxy,Method method,Object[] args) throws Throwable; }

?
参数说明:?
Object proxy:指被代理的对象。?
Method method:要调用的方法?
Object[] args:方法调用时所需要的参数?

可以将InvocationHandler接口的子类想象成一个代理的最终操作类,替换掉ProxySubject。?

Proxy类:?
Proxy类是专门完成代理的操作类,可以通过此类为一个或多个接口动态地生成实现类,此类提供了如下的操作方法:?

public static Object newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)   throws IllegalArgumentException 

?
参数说明:?
ClassLoader loader:类加载器?
Class<?>[] interfaces:得到全部的接口?
InvocationHandler h:得到InvocationHandler接口的子类实例?

?

类加载器?
?????? 在Proxy类中的newProxyInstance()方法中需要一个ClassLoader类的实例,ClassLoader实际上对应的是类加载器,在Java中主要有一下三种类加载器;?
Booststrap ClassLoader:此加载器采用C++编写,一般开发中是看不到的;?
Extendsion ClassLoader:用来进行扩展类的加载,一般对应的是jre\lib\ext目录中的类;?
AppClassLoader:(默认)加载classpath指定的类,是最常使用的是一种加载器。?

?

动态代理?
?????? 与静态代理类对照的是动态代理类,动态代理类的字节码在程序运行时由Java反射机制动态生成,无需程序员手工编写它的源代码。 动态代理类不仅简化了编程工作,而且提高了软件系统的可扩展性,因为Java 反射机制可以生成任意类型的动态代理类。java.lang.reflect 包中的Proxy类和InvocationHandler 接口提供了生成动态代理类的能力。

?

package jdbc.datasourcepool.utils;import java.io.InputStream;import java.io.PrintWriter;import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;import java.sql.SQLFeatureNotSupportedException;import java.util.LinkedList;import java.util.Properties;import java.util.logging.Logger;import javax.sql.DataSource;public class DataSourcePoolProxy implements DataSource {// 给出一个容器private static LinkedList<Connection> list = new LinkedList<Connection>();static {InputStream in = DataSourcePoolProxy.class.getClassLoader().getResourceAsStream("db.properties");Properties prop = new Properties();try {prop.load(in);String driver = prop.getProperty("driver");String url = prop.getProperty("url");String user = prop.getProperty("user");String password = prop.getProperty("password");Class.forName(driver);// 初始化10个Connectionfor (int i = 0; i < 10; i++) {Connection conn = DriverManager.getConnection(url, user,password);list.add(conn); // 将conn对象添加容器中}} catch (Exception e) {e.printStackTrace();throw new ExceptionInInitializerError(e);}}public Connection getConnection() throws SQLException {if (list.size() > 0) {final Connection conn = list.removeFirst();/* * newProxyInstance(ClassLoader loader, Class<?>[] interfaces, * InvocationHandler h) * 返回一个指定接口的代理类实例,该接口可以将方法调用指派到指定的调用处理程序。(这是静态方法) *  第一个参数:定义代理类的类加载器 *  第二个参数:代理类要实现的接口列表  *  第三个参数: 指派方法调用的调用处理程序 */// 构造一个代理对象Object obj = Proxy.newProxyInstance(DataSourcePoolProxy.class.getClassLoader(), conn.getClass().getInterfaces(),// 通过Connection的字节码来获得该类声明的所有方法new InvocationHandler() {@Overridepublic Object invoke(Object proxy, Method method,Object[] args) throws Throwable {if ("close".equals(method.getName())) {// 调用的是close方法将连接返还给连接池System.out.println("使用动态代理" + conn);list.add(conn);return null;} else {// 对于不感兴趣的方法,直接调用真实对象完成return method.invoke(conn, args);}}});return (Connection) obj;} else {throw new RuntimeException("系统繁忙,请稍后再进行连接....");}}public Connection getConnection(String username, String password)throws SQLException {return null;}public PrintWriter getLogWriter() throws SQLException {return null;}public void setLogWriter(PrintWriter out) throws SQLException {}public void setLoginTimeout(int seconds) throws SQLException {}public int getLoginTimeout() throws SQLException {return 0;}public Logger getParentLogger() throws SQLFeatureNotSupportedException {return null;}public <T> T unwrap(Class<T> iface) throws SQLException {return null;}public boolean isWrapperFor(Class<?> iface) throws SQLException {return false;}}

?

热点排行