김영한님 강의 버전확인 하지 않고 2시간동안 삽질하고 해결되지 않아서 버전을 맞추고 진행하니 위와 같은 오류가 확인되었다.
maven 프로젝트는 자바 default 버전으로 1.5를 사용하여 자바 컴파일러 설정을 변경해줘야 했다.
Preferences → Build, Execution, Deployment → Compiler → Java Compiler
Target bytecode version을 변경
pom.xml에 아래 내용 추가
<properties>
<maven.compiler.source>20</maven.compiler.source>
<maven.compiler.target>20</maven.compiler.target>
</properties>