Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
미션 진행도(%)
요구사항 2-2진행하다가 종료.
미션 수행 내용
영상의 내용을 수행하여 view로 jsp json을 나누어 주었고,
ModelAndView를 구현하여 model을 담게 만들었습니다.
다만, 그 뒤에 내용을 아직 못하였는데 스터디에서 현재 만들고자 하는 구조와 이유를 이해하게 되었습니다.
그래서 시험이 끝난뒤 추가미션까지 한번 진행해보고자 합니다.
주안점
궁금점
배운점
트러블 슈팅
.toList는 java16부터 지원이 되지만, 자바 8을 사용하고 있어서 오류가 발생
이를 해결하기위해 java22로 최신버전을 사용하였지만, 이는 gradle이 현재 지원하지 않음.
현재 gradle은 21까지만 지원되기에, 21로 다운그레이드 후 gradle 업데이트 후 해결
혹은 .toList를 .collect(Collectors.toList()) 을 이용하여 낮은버전에서도 사용가능하게 만들수 있음.