mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-08-11 00:25:02 +00:00
* implemented single table inheritance * added the Java documentation for the pattern * updated code files as per the standards * added the puml and png diagram for the file * added README.md * #1316 Single Table Inheritance pattern implemented * resolved the Checkstyle violations * removed the tests due to build failure * updated the code as per review * resolved Checkstyle violations
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
|
||||
# H2 Database Configuration
|
||||
spring.datasource.url=jdbc:h2:mem:sti
|
||||
spring.datasource.username=sa
|
||||
spring.datasource.password=password
|
||||
spring.datasource.driverClassName=org.h2.Driver
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
|
||||
#Uncomment the below properties to see the SQL being generated in backend
|
||||
#spring.jpa.show-sql=true
|
||||
#spring.jpa.properties.hibernate.format_sql=true
|
||||
Reference in New Issue
Block a user