Uses of Interface
io.dropwizard.db.PooledDataSourceFactory
-
Packages that use PooledDataSourceFactory Package Description io.dropwizard.db io.dropwizard.hibernate io.dropwizard.hibernate.dual io.dropwizard.jdbi3 -
-
Uses of PooledDataSourceFactory in io.dropwizard.db
Classes in io.dropwizard.db that implement PooledDataSourceFactory Modifier and Type Class Description class
DataSourceFactory
A factory for pooledManagedDataSource
s.Methods in io.dropwizard.db that return PooledDataSourceFactory Modifier and Type Method Description PooledDataSourceFactory
DatabaseConfiguration. getDataSourceFactory(T configuration)
-
Uses of PooledDataSourceFactory in io.dropwizard.hibernate
Methods in io.dropwizard.hibernate with parameters of type PooledDataSourceFactory Modifier and Type Method Description org.hibernate.SessionFactory
SessionFactoryFactory. build(HibernateBundle<?> bundle, Environment environment, PooledDataSourceFactory dbConfig, ManagedDataSource dataSource, List<Class<?>> entities)
org.hibernate.SessionFactory
SessionFactoryFactory. build(HibernateBundle<?> bundle, Environment environment, PooledDataSourceFactory dbConfig, List<Class<?>> entities)
org.hibernate.SessionFactory
SessionFactoryFactory. build(HibernateBundle<?> bundle, Environment environment, PooledDataSourceFactory dbConfig, List<Class<?>> entities, String name)
-
Uses of PooledDataSourceFactory in io.dropwizard.hibernate.dual
Methods in io.dropwizard.hibernate.dual that return PooledDataSourceFactory Modifier and Type Method Description abstract PooledDataSourceFactory
HibernateBundle. getReadSourceFactory(T configuration)
-
Uses of PooledDataSourceFactory in io.dropwizard.jdbi3
Methods in io.dropwizard.jdbi3 with parameters of type PooledDataSourceFactory Modifier and Type Method Description org.jdbi.v3.core.Jdbi
JdbiFactory. build(Environment environment, PooledDataSourceFactory configuration, ManagedDataSource dataSource, String name)
Build a fully configuredJdbi
instance managed by the DropWizard lifecycle with the configured health check; this method should not be overridden (instead, overrideJdbiFactory.newInstance(ManagedDataSource)
andJdbiFactory.configure(Jdbi)
)org.jdbi.v3.core.Jdbi
JdbiFactory. build(Environment environment, PooledDataSourceFactory configuration, String name)
Build a fully configuredJdbi
instance managed by the DropWizard lifecycle with the configured health check; this method should not be overridden (instead, overrideJdbiFactory.newInstance(ManagedDataSource)
andJdbiFactory.configure(Jdbi)
)
-