1
2
3
4
5
6
7
8
9
10
11
12 |
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
}
|
cs |
이렇게 build.gradle 이 설정되어 있는 경우
postgresql 과 인메모리 db인 h2가 둘 다 들어있다.
이럴때 application.properties 파일에 db설정이 없다면 h2데이터베이스로 실행된다.
'Spring Framework' 카테고리의 다른 글
java.lang.reflect.InvocationTargetException: null (0) | 2019.01.10 |
---|---|
maven , gradle 빌드 명령어 (0) | 2019.01.10 |
Spring jpa Column Generation Type 차이 (0) | 2019.01.09 |
깃에서 Intellij 인텔리j 프로젝트 가져왔는데 실행이 안될때 (0) | 2018.12.16 |
spring boot oauth2.0 Postman 에서 토큰 요청 , refresh 요청 하는 방법 (4) | 2018.12.12 |
댓글