본문 바로가기
📌 Back End/└ Spring

[Spring] Renaming project error 에러 현상 해결 방법

by 쫄리_ 2024. 5. 9.
728x90
반응형

🎯 Goal

  • STS Renaming project error 에러 해결
  • 프로젝트를 STS에서 깃 클론 해서 다시 가져오는 방법을 안다.

⚠️ 문제 현상

STS에서 프로젝트 파일을 그대로 복붙했다가 아래와 같은 에러가 발생 했다.

org.eclipse.buildship.core.internal.UnsupportedConfigurationException: Project at 'C:\Work\Git\LDS_Homepage' can't be named 'lds' because it's located directly under the workspace root. If such a project is renamed, Eclipse would move the container directory. To resolve this problem, move the project out of the workspace root or configure it to have the name 'LDS_Homepage'.


🔑 에러 원인

프로젝트명과 settings.gradle의 rootProject.name의 명이 달라서 그렇다.

 

 


💊 해결 방법

프로젝트를 STS에서 깃 클론 해서 다시 가져오는 방법이 깔끔하다.

 

1. STS (이클립스) 실행

왼쪽 메뉴중 import projects 선택
메뉴 ▶ file ▶ import ▶ git ▶ project from git(with smart import) 선택

import 메뉴 선택

 

 

 

2. Clone URI 선택 ▶ Next 선택

 

 

 

3. git url 입력 및 git 접속 정보 입력 ▶ Next 클릭

clone해올 깃 레포지토리 url 복사

 

 

 

4. 연결할 branch선택 ▶ Next 클릭

 

 

 

5. 저장 폴더명 ▶ settings.gradle의 rootProject.name의 명과 동일

ex) settings.gradle의 rootProject.name의 명 ▶ lds

      C:\Work\Git\lds  ▶ lds 로 폴더명 동일하게 맞춘다.

settings.gradle의 rootProject.name의 명 ▶ lds

 

이와 같이 로컬폴더명도 'lds'로 동일하게 맞춘다.


 

 

 

6. Local Destination (저장 폴더 선택) ▶ Next 클릭

소스를 다운받는 프로그래스바가 생성된 이후 모두 받고 완료 ▶ Finish 버튼 클릭

 

728x90
반응형