아래와 같이 db 이름을 설정했습니다.
spring:
application:
name: catalog-service
h2:
console:
enabled: true
settings:
web-allow-others: true
path: /h2-console
jpa:
hibernate:
ddl-auto: create-drop
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:testdb
username: sa
password:
SpringBoot 2.4버젼 이후로 추가적으로 application 설정이 필요합니다.
spring:
datasource:
generate-unique-name: false