본문 바로가기

개발

(42)
맥 H2 데이터베이스 설치하기 http://www.h2database.com/html/main.html H2 Database Engine H2 Database Engine Welcome to H2, the Java SQL database. The main features of H2 are: Very fast, open source, JDBC API Embedded and server modes; in-memory databases Browser based Console application Small footprint: around 2.5 MB jar file size Supp www.h2database.com 위 사이트에서 압축파일을 다운받는다. 압축파일을 해제한 후 터미널에서 bin폴더의 h2.sh 파일을 실행한다 $ cd ~/D..
맥에 Spring Tool Suite 4 다운로드 및 설치 https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io 위 사이트에서 macOS 버전을 다운로드 한다. 다운로드 받은 파일을 클릭한 후, 드래그하여 Applications 파일로 옮겨준다 런치패드에 있는 SpringToolSuite4를 열어 launch하면 끝이다.
Chapter 2 - 롬복 소개 및 설치하기 Lombok 롬복 : 자바 개발자들의 필수 라이브러리 Getter, Setter, 기본생성자, toString 등을 어노테이션으로 자동 생성해준다. 이클립스 - 롬복 설치 번거로움 인텔리제이 - 플러그인 덕에 쉽게 설치 가능 build.gradle 파일에 롬복 등록 후 새로고침해서 라이브러리(의존성)을 내려받는다. 라이브러리를 다 받은 후 플러그인을 설치한다. cmd + shift + A 단축키로 Action을 켠 후 Plugins - Marketplace에서 lombok을 검색했는데 어쩐 일인지 설치가 되어있다. 설치한 적이 있나보다. Preferences - Build, Execution, Deployment - Annotation Processor - Enable annotation processi..
맥 이클립스 설치하기 이클립스 설치 전 JAVA 설치 및 환경변수 설정이 되어있어야 한다. https://chocotolatetomato.tistory.com/116?category=1078091 맥 Java 환경변수 Path 설정 터미널을 실행 후 cd /Library/Java/JavaVirtualMachines/본인의 jdk/Contents/Home 를 입력하여 해당 디렉토리로 이동한다. vi ~/.bash_profile 를 입력한 후 창이 변경되면 i 를 입력한다. export JAVA_HOME.. chocotolatetomato.tistory.com macOS Eclipse 설치 https://www.eclipse.org/downloads/packages/ Eclipse Packages | The Eclipse Fou..
맥 메모장 : TextEdit (텍스트 편집기) 윈도우에서 사용하던 메모장이 없어 당황했는데, 맥북에서는 텍스트 편집기가 메모장 역할을 한다고 한다. 만약 '텍스트 편집기'로 검색해도 나오지 않는다면, 'TextEdit'으로 검색하면 된다. 맥북에서 텍스트 편집기(Textedit)를 사용하면, 윈도우의 메모장(notepad)와는 다르게 폰트형식이 들어간다. 복사 붙여넣기를 할때 형식이 안들어간 순수 텍스트만 복붙하고 싶으면 텍스트 편집기를 실행 후 , 환경설정에 들어가서 포맷을 '일반 텍스트'로 바꿔준다.
맥 Java 환경변수 Path 설정 터미널을 실행 후 cd /Library/Java/JavaVirtualMachines/본인의 jdk/Contents/Home 를 입력하여 해당 디렉토리로 이동한다. vi ~/.bash_profile 를 입력한 후 창이 변경되면 i 를 입력한다. export JAVA_HOME=/Library/Java/JavaVirtualMachines/본인의 jdk/Contents/Home export PATH=${PATH}:$JAVA_HOME/bin 입력 후 esc 키를 눌러준다. 그리고 :wq 를 입력해주면 하단에 작성된 걸 확인할 수 있다. return 키를 눌러준다. 다시 원래의 실행 창으로 변경되면 source ~/.bash_profile 명령어를 입력해주면 설정이 끝난다. 정상적으로 설정이 적용된 건지 3가지 명..
맥 자바 설치 경로, JDK 위치 찾기 1. Finder Finder 를 열어준다. Command + Shift + G 를 눌러 '폴더로 이동' 을 열어준다. /Library/Java/JavaVirtualMachines/ 를 복사해 이동한다. 2. 터미널 터미널을 켠다. cd /Library/Java/JavaVirtualMachines/ 를 입력해 JavaVirtualMachines 디렉토리로 이동한다. ("cd" 명령어는 Change Directory를 줄인 약어로 디렉토리를 변경해주는 명령어) "pwd" 명령어를 이용하여 정상적으로 디렉토리가 변경되었는지 확인한다. "ls" 명령어를 이용하여 현재 디렉토리에 있는 파일을 확인하면 자신이 설치한 JDK 파일이 위치한 것을 볼 수 있습니다. ("ls" 명령어는 List Segement를 줄인 ..
맥 Visual studio code 설치하기 https://code.visualstudio.com Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 위 사이트에서 방문자의 OS를 확인해 자동으로 Download Mac Universal 버튼을 보여준다. 여기서 Mac Universal은 인텔 CP..