-
Eclipse JEE 버전 설치하기JAVA 2022. 6. 20. 14:22
https://www.eclipse.org/downloads/packages/release/2021-12/r
2021-12 R | Eclipse Packages
509 MB 967,514 DOWNLOADS Tools for developers working with Java and Web applications, including a Java IDE, tools for JavaScript, TypeScript, JavaServer Pages and Faces, Yaml, Markdown, Web Services, JPA and Data Tools, Maven and Gradle, Git, and more. Cli
www.eclipse.org
scoop에서 최신버전만 제공하기 때문에, 이전버전 JEE를 설치하기 위해서 eclipse 홈페이지로 들어간다.
Enterprise버전을 다운받아야한다. 사용하는 운영체제에 맞는 다운로드 파일을 받고,
원하는 경로에 압축해제하면 설치가 완료된다.
C:\app\eclipse 밑에 'jee-2021-12' 이름의 폴더로 저장했다.
eclipse 폴더 내 workspace 폴더를 하나 만들어서, 버전별로 폴더를 생성했다.
eclipse 구동 버전 설정
eclipse.exe 파일이 있는 폴더로 들어가서, eclipse.ini 파일을 수정한다.
sublime text로 연 다음, vm의 경로를 수정한다.
현재 11버전이 스프링, 톰캣을 구동시키기에 가장 안정적이다.
scoop에서 temurin11-jdk를 설치 후, 해당 경로로 이동해서 server > jvm.dll 파일의 전체경로를 복사 후 vm에 붙여넣는다.
기존 경로는 밑에 복사 후 세미콜론으로 주석처리한다.
temurin11-jdk 설치방법
> scoop install temurin11-jdk
다음으로는, 최소 메모리와 최대 메모리를 수정한다. (default : 256 / 2048)
마지막으로 바탕화면에 eclipse.exe를 바로가기 추가해두면 편하게 사용할 수 있다.
버전구별을 위해 이름을 변경한다.
다른 버전 이클립스를 다운받을 때에도, 항상 이 단계를 거치면 된다.
+) jee specification 문서 확인하기
https://download.oracle.com/otndocs/jcp/java_ee-8-final-spec/index.html
JSR-000366 Java Platform, Enterprise Edition 8 Specification Final Release
JSR-000366 Java Platform, Enterprise Edition 8 Specification Final Release Thank you for accepting the Software License Agreement; you may now download this software. Download Instruction: Click the product name or the file name to start the download.
download.oracle.com
해당 사이트에서 jee specification 관련한 pdf형식 문서를 다운받아볼 수 있다.
'JAVA' 카테고리의 다른 글
이클립스에서 Maven 프로젝트 생성하고 WAS 올리기 (0) 2022.06.21 Eclipse JEE 버전 환경설정 (0) 2022.06.21 아파치 메이븐(Apache Maven)이란? / 메이븐 프로젝트 생성하기 (0) 2022.06.20 JAVA Collections 클래스의 유용한 메소드들 (0) 2022.04.15 멀티 스레드의 개념(왜 멀티 스레드를 사용해야할까?) (0) 2022.04.09