티스토리 뷰
- 내가 경험한 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 버전보다 높을 때 나는 에러
'java&spring' 카테고리의 다른 글
@Async를 통한 비동기 처리 (0) | 2016.10.08 |
---|---|
replaceAll과 split에서의 주의점 (0) | 2016.08.25 |
[Java] 가변 인수 (0) | 2016.08.07 |
인터페이스(interface) (0) | 2016.08.06 |
[Java] 생성자 (0) | 2016.08.04 |