본문 바로가기
728x90

Setting3

UnsupportedClassVersionError ( java 설치 for mac os) 위와 같은 오류 확인 시 적절한 자바 버전을 설치해주면 끝 Homeblew 가 이미 설치 되어 있다는 가정하에적절한 자바 버전을 아래와 같이 설치!brew install openjdk@21 이후 설치가 제대로 되어있는지 확인한다(내가 설치한 자바버전이 리스트에 있으면 OK)/usr/libexec/java_home -V 아래 명령어를 입력해서 등록해주자!export JAVA_HOME=$(/usr/libexec/java_home -v 21)export PATH=$JAVA_HOME/bin:$PATH 그런 다음 자바버전 확인 시 내가 설치한 자바 버전이 노출되면 완료!java -version 혹시나 자동변경되지 않았다면 수동으로 추가하자!vi ~/.zshrc 최 하단에 추가!export JAVA_HOME=$(.. 2026. 2. 4.
Mac OS 내 git setting 하기 (for github) 1. homebrew 설치 - site 에서 다운로드 https://brew.sh/ HomebrewThe Missing Package Manager for macOS (or Linux).brew.sh - terminal 로 다운로드 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 2. Homebrew 에서 git 설치brew install git 3. git config 내 계정연결git config --listgit config --global user.name "XXX"git config --global user.email "XXX@AAA.com" 4... 2026. 2. 3.
Claude code init setting 1. Claude code 설치npm install -g @anthropic-ai/claude-code 2. 프로젝트 생성 및 이동mkdir kotlincd kotlin 3. Claude code 실행claude 4. intellij plugin 설치 5. Claude 초기화/init 6. claude md 파일 생성 # CLAUDE.md## Project Overview## Build Commands## Tech Stack## Kotlin Compiler Configuration## Architecture & Design Guidelines## Mandatory Rules (Must Follow)## Spring & JPA Guidelines## API & Controller Guidelines## .. 2026. 1. 25.
728x90