Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- db
- 개발
- 3박4일
- Eclipse
- android studio
- 자바
- GitHub
- 안드로이드스튜디오
- Java
- 코틀린
- 친구랑
- 오류해결
- 리눅스
- AndroidStudio
- Android
- 안드로이드
- oracle
- 오라클
- 깃허브
- error
- 자바스크립트
- 재밌당
- Git
- 별5개
- 공부
- 개발자
- JavaScript
- 1박2일
- 도쿄
- kotlin
Archives
- Today
- Total
dev_eunz
[SpringBoot] Project and External Dependencies 안보일 때 본문
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
반응형
'IT' 카테고리의 다른 글
[SpringBoot] Lombok 적용 안됨 ( 설치 했는데 안될 때 ) (0) | 2021.02.16 |
---|---|
[SpringBoot] Lombok 인식 안될 때, 실행 안됨 (0) | 2021.02.15 |
[VirtualBox] 오라클 가상머신(VircualBox) 한영변환, 호스트 키 설정, 호스트 키 확인 (0) | 2021.02.15 |
[ORACLE] 컬럼 타입 변경하기 (0) | 2021.02.05 |
[ORACLE] 간단하게 컬럼 순서 변경하기(VISIBLE 사용X) (0) | 2021.02.05 |
Comments