작성
·
743
0
강의에서 배운대로 현재 버전에 맞추어 수정해서 파일을 수정했는데, 다음과 같은 오류 : { Cannot run program "C:\Program Files\Java\jdk-16.0.2\bin\java.exe" (in directory "C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.3\bin"): CreateProcess error=2, 지정된 파일을 찾을 수 없습니다 } 가 뜨면서 build가 안되는 현상이 발생합니다. 혹시 제가 무엇을 잘못한건지 알 수 있을까요? 해당 파일 코드도 같이 첨부합니다.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>jpa-basic</groupId>
<artifactId>ex-hello-jpa</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<dependencies>
<!-- JPA 하이버네이트 -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.6.10.Final</version>
</dependency>
<!-- H2 데이터베이스 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
</dependency>
</dependencies>
</project>
답변 1
0
안녕하세요. 오선정[경영학부]님, 공식 서포터즈 OMG입니다.
자바16을 사용중이신 것 같네요.
본 강의는 자바1.8을 기준으로 설명드립니다.
아래 링크를 참고해주세요.
https://www.inflearn.com/questions/32905
감사합니다.