接口 ConnectionPropertiesTransform
-
public interface ConnectionPropertiesTransformImplement this interface, and pass the class name as the 'propertiesTransform' property in your URL, and the driver will pass the properties it has parsed to your transform implementation so that you can modify/substitute/add any that you desire.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 PropertiestransformProperties(Properties props)The driver will call this method if the user has loaded your implementation of this interface by specifying the 'propertiesTransform' property in their URL.
-
-
-
方法详细资料
-
transformProperties
Properties transformProperties(Properties props)
The driver will call this method if the user has loaded your implementation of this interface by specifying the 'propertiesTransform' property in their URL.- 参数:
props- the properties as passed by the driver (never null)- 返回:
- the same properties with any transformations that your implementation has made
-
-