[Eclipse/이클립스] - Multiple markers at this line, The type java.lang.Object cannot be resolved... 오류


[Eclipse/이클립스] - Multiple markers at this line, The type java.lang.Object cannot be resolved... 오류

새로운 프로젝트를 받아보니 다음과 같은 오류가 발생했다.Multiple markers at this line - The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files - The type java.lang.String cannot be resolved.

It is indirectly referenced from required .class files내용을 보면 최상위 클래스인 Object 패키지가 해결되지 않았고, 필요한 클래스 파일들이 제대로 레퍼런스 되지 않고있다는 내용이다.위와 같은 경우는 jre 라이브러리에 문제가 생겨서 발생하는 오류이다.해결법은, 해당 프로젝트의 jre 라이브러리를 제거하고 다시 추가하면 된다.1. 해당 프로젝트 우클릭 > Propert..........



원문링크 : [Eclipse/이클립스] - Multiple markers at this line, The type java.lang.Object cannot be resolved... 오류