Package org.springframework.boot.autoconfigure.jdbc

Examples of org.springframework.boot.autoconfigure.jdbc.DataSourceInitializedEvent


    if (bean instanceof JpaProperties) {
      this.properties = (JpaProperties) bean;
    }
    if (bean instanceof EntityManagerFactory && this.dataSource != null
        && isInitializingDatabase()) {
      this.applicationContext.publishEvent(new DataSourceInitializedEvent(
          this.dataSource));
    }
    return bean;
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.autoconfigure.jdbc.DataSourceInitializedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.