spring web and spring orm have built in H2 support...
# server
e
spring web and spring orm have built in H2 support FYI amanda
Copy code
spring:
  datasource:
    url: jdbc:h2:mem:database_name
    username: sa
    password:
    driver-class-name: org.h2.Driver
in your application.yml file under src/main/resources is all you need
👍 1