dev_eunz

[SpringBoot] Project and External Dependencies 안보일 때 본문

IT

[SpringBoot] Project and External Dependencies 안보일 때

은그램 2021. 2. 15. 18:37
728x90
반응형

Spring boot 프로젝트를 하던 중,

갑자기 라이브러리를 읽지 못하는 문제가 발생했다.

 

다시 확인해보니, 'Project and External Dependencies' 가 사라진것.!

 

 

처리했던 방법은 간단했다.

 

 

 

1. .project 파일 편집

( workspace - 작업폴더 들어가면 있다 )

 

<buildCommand>
         <name>org.eclipse.wst.common.project.facet.core.builder</name>
         <arguments>
         </arguments>
</buildCommand>

 

해당 부분을 제거해준다.

 

 

2. .classpath 파일 편집

<classpathentry kind="con" path="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>

 

위의 코드를 추가해준다.

 

 

 

3. STS / Eclipse 재시작

728x90
반응형
Comments