H2연동

조현재·2023년 1월 27일
0

MSA

목록 보기
6/17
 <dependency>
  <groupId>com.h2database</groupId>
  <artifactId>h2</artifactId>
  <version>1.3.176</version>
  <scope>test</scope>
 </dependency>

mvn사이트에서 받으면 test로 되어있을건데
scope에 test로 해두면 실행했을 때 결과를 확인할 수 없어서
runtime으로 바꿔줘야한다.

spring:
  application:
    name: user-service
  h2:
    console:
      enabled: true
      settings:
        web-allow-others: true //외부에서 접속 허용하겠다.
      path: /h2-console   
      //접속하고자 하는 웹브라우저에서 h2 console.이라고 보면 된다

profile
내일이 다른

0개의 댓글