JDBC SPI加载机制
Posted 风泊月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBC SPI加载机制相关的知识,希望对你有一定的参考价值。
测试时偶然发现即使不加载驱动 也是可以成功获取数据库连接的
@Test
public void test3() throws Exception
//Class.forName("com.mysql.jdbc.Driver");
String userName = "root";
String passWord = "root";
String url = "jdbc:mysql://localhost:3306/test";
Connection connection = DriverManager.getConnection(url, userName, passWord);
System.out.println(connection);//com.mysql.jdbc.JDBC4Connection@6b71769e
然后,查找了相关资料,发现是源于 ***SPI(Service Provider Interface)***机制
SPI概述
SPI全称为(Service Provider Interface) ,是JDK内置的一种服务提供发现机制;主要被框架的开发人员使用,比如java.sql.Driver接口,数据库厂商实现此接口即可,当然要想让系统知道具体实现类的存在,还需要使用固定的存放规则,需要在classpath下的META-INF/services/目录里创建一个以服务接口命名的文件,这个文件里的内容就是这个接口的具体的实现类;下面以JDBC为实例来进行具体的分析。
将jar包添加到工程内
然后打开jar包 发现每个jar包的META-INF/services/都存在一个java.sql.Driver文件,文件里面存在一个或多个类名,比如mysql:
com.mysql.jdbc.Driver
com.mysql.fabric.jdbc.FabricMySQLDriver
提供的每个驱动类占据一行,解析的时候会按行读取,具体使用哪个会根据url来决定;
具体META-INF/services/下的驱动类是什么时候加载的,DriverManager有一个静态代码块:
static
loadInitialDrivers();
println("JDBC DriverManager initialized");
private static void loadInitialDrivers()
String drivers;
try
drivers = AccessController.doPrivileged(new PrivilegedAction<String>()
public String run()
return System.getProperty("jdbc.drivers");
);
catch (Exception ex)
drivers = null;
// If the driver is packaged as a Service Provider, load it.
// Get all the drivers through the classloader
// exposed as a java.sql.Driver.class service.
// ServiceLoader.load() replaces the sun.misc.Providers()
AccessController.doPrivileged(new PrivilegedAction<Void>()
public Void run()
ServiceLoader<Driver> loadedDrivers = ServiceLoader.load(Driver.class);
//会遍历DriverManage静态代码块执行时,当前线程类加载器下找
Iterator<Driver> driversIterator = loadedDrivers.iterator();
/* Load these drivers, so that they can be instantiated.
* It may be the case that the driver class may not be there
* i.e. there may be a packaged driver with the service class
* as implementation of java.sql.Driver but the actual class
* may be missing. In that case a java.util.ServiceConfigurationError
* will be thrown at runtime by the VM trying to locate
* and load the service.
*
* Adding a try catch block to catch those runtime errors
* if driver not available in classpath but it's
* packaged as service and that service is there in classpath.
加载这些驱动程序,以便可以实例化它们。
可能是驱动程序类可能不存在的情况即,
可能存在带有服务类*的打包驱动程序,
作为java.sql.Driver的实现,但是实际的类*可能会丢失。在这种情况下,VM将在运行时抛出java.util.ServiceConfigurationError *并尝试查找*并加载服务。 * *
添加一个try catch块来捕获那些运行时错误*如果驱动程序在类路径中不可用,但打包为服务,并且该服务在类路径中。
*/
try
while(driversIterator.hasNext())
driversIterator.next();//对驱动进行实例化
catch(Throwable t)
// Do nothing
return null;
);
println("DriverManager.initialize: jdbc.drivers = " + drivers);
//如果没有进入循环
if (drivers == null || drivers.equals(""))
return;
String[] driversList = drivers.split(":");
println("number of Drivers:" + driversList.length);
for (String aDriver : driversList)
try
println("DriverManager.Initialize: loading " + aDriver);
Class.forName(aDriver, true,
ClassLoader.getSystemClassLoader());
catch (Exception ex)
println("DriverManager.Initialize: load failed: " + ex);
通过这两种方式进行驱动加载 程序员 可以省略调自己手动加载的步骤。
以上是关于JDBC SPI加载机制的主要内容,如果未能解决你的问题,请参考以下文章