exception 모음
- 내가 경험한 exception 모음
- java.lang.exceptionininitializererror : 객체를 생성할 때 발생하는 exception
- org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'common': Bean with name 'common' has been injected into other beans [userServiceImpl] in its raw version as part of a circular reference, but has eventually been wrapped. This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching - consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off, for example. : 참조하는 대상이 서로 물려 있어서 참조할 수 없어 나타나는 에러
- The method xxxMethod() is ambiguous for the type xxxMethod : 동일한 이름의 메소드를 호출할 때 나타나는 에러
- 'Method' of type 'Class' must override a superclass method : 컴파일 하는 자바 버전을 1.6 이상으로 수정하면 된다.
- Variable xxx may not have been initialized : 초기화 되지않은 변수를 사용했을 때 나타나는 에러
- java compiler level does not match the version of the installed java project facet : 코드의 java 버전이 컴파일 할 때의 java 버전보다 높을 때 나는 에러