development♥

[프로젝트 복사 에러]Synchronize Gradle projects with workspace failed

리니❤ 2022. 10. 17. 09:16
반응형

이클립스에서 프로젝트파일을 그대로 복붙했다가 아래와같은 에러가 난 경우 

 

 

ynchronize Gradle projects with workspace failed due to an unsupported configuration in the referenced Gradle build. Project at 'C:\ws\Testa' can't be named 'testa' 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 '프로젝트이름'.

 

 

명칭이 달라서 그럼

프로젝트파일을 복붙할때 이름이 바꿔서 붙여넣는데

나는 dsme_okvoting_cms_2022로 변경을 했는데

setting.gradle에는 변경전 명칭인 okvoting_cms_2022로 되어있어서

서로 명칭이 달라서 나는거라 

변경한 명칭으로 바꿔주기 

 

 

 

 

 

 

*********************************************************************************

그리고 원래 프로젝트파일은 mysql을 사용하는데 나는 oracle을 사용할거라서 

ojdbc파일을 다운받아줘야함

 

 

 

 

properties들어가서 build path에 ojdbc파일이 없는경우가있음

 

그럼 

gradle 툴을 쓸 경우 

bulid.gradle파일에서

코드를 심어주기

(메이븐 저장소에서 ojdbc검색하고 거기에서 gradle 코드복붙하기 ) 

 

 

 

 

context-dataxource.xml 

파일에서 DB연결도 본인거로 변경해주기

원래 프로젝트는 마리아db를 썼는데

 

나는 오라클을 사용할거기때문에

오라클로 변경해주기

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

반응형