generated from Java-2025Fall/final-vibevault-template
14 lines
478 B
Properties
14 lines
478 B
Properties
# Test Configuration - Uses H2 in-memory database
|
|
spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
|
spring.datasource.driver-class-name=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=
|
|
|
|
spring.jpa.hibernate.ddl-auto=create-drop
|
|
spring.jpa.show-sql=false
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect
|
|
|
|
# Disable security for some tests (can be overridden per test)
|
|
# spring.security.enabled=false
|
|
|