티스토리 뷰
Mock Test만으로는 db의 작동을 잘 검증하기 어려울 때 h2를 이용하면 수월합니다.
버전
Java 17
SpringBoot 3.0.0
build.gradle
특이사항은 testImplementation com.h2database:h2 입니다. test에서 h2를 쓰겠다는 뜻입니다.
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation group: 'org.springframework.security', name: 'spring-security-test'
}
application.yml
test쪽에 별도의 .yml을 만들어서 넣어야 합니다.
datasource쪽에 h2설정이 들어가 있습니다.
application.yml
server:
servlet:
encoding:
force-response: true
spring:
jpa:
hibernate:
ddl-auto: update
show-sql: true
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:testdb;MODE=MySQL;DB_CLOSE_DELAY=-1
username: sa
password:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
h2:
console:
enabled: true
logging:
level:
org:
hibernate:
SQL: DEBUG
TestCode
@ExtendWith, @DataJpaTest를 사용합니다.
@ExtendWith(SpringExtension.class)
@DataJpaTest
public class ForDevelop {
@Autowired
LikeRepository likeRepository;
@Autowired
PostRepository postRepository;
728x90
'Spring > Spring Boot(스프링 부트)' 카테고리의 다른 글
SpringBoot 3.x에서 Security변경사항 (0) | 2023.01.17 |
---|---|
SpringBoot Intellij에서 Environment Variable을 application.yml에 넣기 (0) | 2023.01.05 |
@WebMvcTest로 Controller테스트 하기 (0) | 2022.12.28 |
Swagger에서 Jwt Token으로 테스트 하기 (0) | 2022.12.21 |
Jpa에 Audit적용하기 (0) | 2022.12.15 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- docker container case
- Linux
- 개발자
- 도커각티슈박스
- 이직
- 2017 티스토리 결산
- 도커티슈박스
- docker container tissue
- docker container tissue box
- 도커컨테이너
- shellscript
- 싱가폴
- Sh
- docker container
- 도커티슈케이스
- docker container whale
- 도커각티슈케이스
- vim
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함