Skip to content

Commit

Permalink
remove-sql-generation-from-eclipse-link
Browse files Browse the repository at this point in the history
  • Loading branch information
fynmanoj authored Nov 16, 2023
1 parent 9b4d568 commit 3b5d078
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ protected AbstractJpaVendorAdapter createJpaVendorAdapter() {
protected Map<String, Object> getVendorProperties() {
HashMap<String, Object> map = new HashMap<>();
map.put(PersistenceUnitProperties.WEAVING, detectWeavingMode());
map.put(PersistenceUnitProperties.DDL_GENERATION, "create-or-extend-tables");
//map.put(PersistenceUnitProperties.DDL_GENERATION, "create-or-extend-tables");
map.put(PersistenceUnitProperties.LOGGING_LEVEL, "INFO");
map.put(PersistenceUnitProperties.DDL_GENERATION_MODE, "both");
//map.put(PersistenceUnitProperties.DDL_GENERATION_MODE, "both");
// map.put(PersistenceUnitProperties.DDL_GENERATION_MODE, "sql-script");
map.put("eclipselink.jdbc.batch-writing", "JDBC");
map.put("eclipselink.jdbc.batch-writing.size", "1000");
Expand Down

0 comments on commit 3b5d078

Please sign in to comment.