Skip to content

Commit

Permalink
fix application-integrationtest.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
tbischoff2 committed Jan 7, 2025
1 parent 4324ddd commit 818ea10
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spring.jpa.properties.hibernate.format_sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.open-in-view=true
server.ssl.enabled=false
spring.profiles.active=default
#########################

###### SSL Bundle #######
Expand All @@ -17,6 +16,15 @@ spring.profiles.active=default
#spring.ssl.bundle.jks.service.keystore.type=PKCS12
#########################

##### RDBS via in-memory (in-memory H2) #####
spring.profiles.active=default
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect
spring.datasource.driver=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.username=sa
spring.datasource.password=
#######################################

##### RDBS via JPA (in-memory H2) #####
#spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect
#spring.profiles.active=jpa
Expand Down

0 comments on commit 818ea10

Please sign in to comment.