Skip to content

Instantly share code, notes, and snippets.

View TheKojuEffect's full-sized avatar

Kapil Koju TheKojuEffect

View GitHub Profile
@TheKojuEffect
TheKojuEffect / hibernateProperties.java
Last active December 13, 2015 23:59
Hibernate Properties available for configurations.
@Bean
public Properties hibernateProperties() {
Properties properties = new Properties();
properties.put("hibernate.dialect",
"org.hibernate.dialect.MySQL5Dialect");
properties.put("hibernate.show_sql", "true");
properties.put("hibernate.hbm2ddl.auto", "create");
// properties.put("hibernate.connection.driver_class", "org.h2.Driver");
// properties.put("hibernate.connection.url",