Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Kotlin in action 10장
- 객체 지향 설계와 스프링
- Kotlin in action 6장
- spring
- 스프링 컨테이너와 스프링 빈
- Kotlin In Action
- 20055 컨베이어 벨트 위의 로봇
- 코틀린인액션
- 스프링 핵심 원리 이해
- 기능개발 python
- 7장 고급매핑
- 백준
- 13460 구슬탈출 2
- 20055
- 백준 20055 컨베이어 벨트 위의 로봇
- 싱글톤 컨테이너
- 컨베이어 벨트 위의 로봇 Python
- 자바 ORM 표준 JPA 프로그래밍 7장
- 백준 13460 Python
- 코틀린
- 코틸린인액션
- kotlin in action 정리
- Kotlin in action 5장
- Kotlin
- 스프링 핵심 원리 - 기본편
- 고급매핑
- Python
- KotlinInAction
- 스프링 핵심 원리
- Kotlin in action 3장
Archives
- Today
- Total
기록하는 습관
[Spring] Migration (3) 2.1.6.RELEASE -> 2.6.4 본문
1. gradle 업그레이드
- 5.0-all 버전에서 7.4.1 버전으로 업데이트
2. springboot version 및 라이브러리 버전 변경
- spring-boot-starter 2.1.6.RELEASE로 변경
- 라이브러리 업데이트
3. 라이브러리 교체 및 주요 변경사항 수정
2.1.6.RELEASE | 2.6.4 | 참고 | |
application.yml | spring.profiles.include | spring.profiles.include 제거 | https://multifrontgarden.tistory.com/277 |
configuration-processor | implementation configuration-processor | annotationProcessor 명시 (configuration-processor) |
|
powermock | powermock 의존성 삭제 | https://frontbackend.com/java/how-to-mock-static-methods-with-mockito | |
junit 어노테이션 | @Before (junit4) | @BeforeEach (junit5) |
5. 테스트 수행
- build & 실행 확인
- api 호출 정상 동작 확인
6. 마이그레이션 지원 라이브러리 의존성 삭제
-
runtime("org.springframework.boot:spring-boot-properties-migrator")
'개발 > Spring' 카테고리의 다른 글
스프링 핵심 원리 - 고급편 (1) ThreadLocal (0) | 2022.10.07 |
---|---|
[Spring] Migration (4) Java 1.8 -> 11 (0) | 2022.07.12 |
[Spring] Migration (2) 1.5.4.RELEASE -> 2.1.6.RELEASE (0) | 2022.07.12 |
[Spring] Migration (1) - java, springboot 버전 업그레이드 (0) | 2022.07.12 |
[Spring] Gradle (5) - 의존성 (0) | 2022.07.12 |
Comments