use of org.apereo.cas.configuration.model.support.jpa.DatabaseProperties in project cas by apereo.
the class JpaBeanFactory method newJpaVendorAdapter.
/**
* New jpa vendor adapter.
*
* @return the jpa vendor adapter
*/
default JpaVendorAdapter newJpaVendorAdapter() {
val properties = new DatabaseProperties();
properties.setGenDdl(true);
properties.setShowSql(true);
return newJpaVendorAdapter(properties);
}
Aggregations