ERROR 내용 git add . 를 하려 했더니 오류가 떳다. 원인 이건 보통 맥 / 리눅스를 쓰는 개발자와 윈도우 쓰는 개발자가 Git으로 협업할 때 발생하는 Whitespace 에러라고 한다. 유닉스 시스템에서는 한 줄의 끝이 LF(Line Feed)로 이루어지는 반면, 윈도우에서는 줄 하나가 CR(Carriage Return)와 LF(Line Feed), 즉 CRLF로 이루어지는데 Git이 이 둘 중 어느 쪽을 선택할지 혼란이 온 것이다. 💡 LF (Line-Feed) LF는 Line-Feed의 약자이다.단어가 타자기에서 비롯되었듯이, 커서는 그 자리에 둔 상태에서 종이만 한 줄을 올리는 동작을 말한다. Mac, Linux(Unix)에서 사용되는 줄바꿈 문자열(\n)이다. 💡 CRLF (Carri..
error
ERROR 내용 터미널에서 mvn spring-boot:run 을 했을 때 이런 에러 내용이 뜬다면 main class를 찾지 못한 것이다. Execution default-cli of goal org.springframework.boot:spring-boot-maven-plugin:3.2.1:run failed: Unable to find a single main class from the following candidates [com.example.firstserivce.FirstServiceApplication, com.example.firstserivce.FirstSerivceApplication] -> [Help 1] 해결 메인 클래스 명시적 설정을 해주면 된다. pom.xml 파일에서 spri..
ERROR 내용 maven으로 프로젝트를 생성했다. 터미널에서 mvn --version으로 버전을 확인하려 했으나.. maven 설치를 안해둔 상황.. IntellJ는 maven을 자동으로 설치해주지 않는다. 그래서 maven 설치를 했다. cmd 에서는 maven 버전확인이 되는데, 터미널에서는 오류가 뜸.. https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%81%B4%EB%9D%BC%EC%9A%B0%EB%93%9C-%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%EC%84%9C%EB%B9%84%EC%8A%A4# 해결 "시스템 환경 변수 편집"에 들어가서 IntelliJ IDEA보다는 위에 %SystemRoot%\syst..
ERROR 내용 mvn spring-boot:run -Dspring-boot.run.jvmArguments='-Dserver.port=9004'으로 터미널에서 9004 새로운 port로 기동하려 했으나, 오류가 떳다. 해결 1. mvn install 오류메시지를 따라서 홈페이지에 들어가 순서대로 mvn을 설치 해줬다. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException Invoke a lifecycle phase, e.g. mvn install This runs the lifecycle phase install and all its predecessor phases like comp..