ZBD | f60356c | 2025-04-03 20:09:51 +0800 | [diff] [blame^] | 1 | # H2 Configuration (Ensure these are uncommented) |
2 | spring.datasource.url=jdbc:h2:mem:testdb | ||||
3 | spring.datasource.driver-class-name=org.h2.Driver | ||||
4 | spring.datasource.username=sa | ||||
5 | spring.datasource.password= | ||||
6 | spring.h2.console.enabled=true | ||||
7 | |||||
8 | # Required for JPA/Hibernate | ||||
9 | spring.jpa.database-platform=org.hibernate.dialect.H2Dialect | ||||
10 | spring.jpa.hibernate.ddl-auto=update |