org.springframework.boot.jdbc

Class DataSourceUnwrapper

  • java.lang.Object
    • org.springframework.boot.jdbc.DataSourceUnwrapper


  • public final class DataSourceUnwrapper
    extends java.lang.Object
    Unwraps a DataSource that may have been proxied or wrapped in a custom Wrapper such as DelegatingDataSource.
    Since:
    2.0.7
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method and Description
      static <T> T unwrap(javax.sql.DataSource dataSource, java.lang.Class<T> target)
      Return an object that implements the given target type, unwrapping delegate or proxy if necessary.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • unwrap

        public static <T> T unwrap(javax.sql.DataSource dataSource,
                                   java.lang.Class<T> target)
        Return an object that implements the given target type, unwrapping delegate or proxy if necessary.
        Type Parameters:
        T - the target type
        Parameters:
        dataSource - the datasource to handle
        target - the type that the result must implement
        Returns:
        an object that implements the target type or null