[설치 경로]
다운로드: https://www.azul.com/downloads/
(msi버전 다운로드하고 설치)
기본설치경로: C:\Program Files\Zulu\zulu-11
[환경변수 설정]
- 환경변수 - 시스템변수 - JAVA_HOME 추가 - 변수값 (C:\Program Files\Zulu\zulu-11)
- 환경변수 - 시스템변수 - Path 편집 후 추가 (%JAVA_HOME%\bin)
[확인]
cmd에서 확인
C:\Users\jaeshim>javac
Usage: javac <options> <source files>
where possible options include:
@<filename> Read options and filenames from file
-Akey[=value] Options to pass to annotation processors
--add-modules <module>(,<module>)*
Root modules to resolve in addition to the initial modules, or all modules
on the module path if <module> is ALL-MODULE-PATH.
--boot-class-path <path>, -bootclasspath <path>
Override location of bootstrap class files
--class-path <path>, -classpath <path>, -cp <path>
Specify where to find user class files and annotation processors
-d <directory> Specify where to place generated class files
...
'Java' 카테고리의 다른 글
OpenFeign 알아보기 (1) | 2024.08.30 |
---|---|
팩토리 메소드 디자인 패턴 (0) | 2022.11.26 |
유틸성 클래스를 만들기 위해 private 접근제어 활용하기 (0) | 2022.11.19 |
throw, throws에 대한 정리 (0) | 2022.11.19 |
Checked Exception, UncheckedException (0) | 2022.11.14 |