nitialize Unable to obtain CGLib fast class and/or method implementation 해결하기
general java 2017. 1. 14. 00:40cglib과 asm은 의존성 관계가 깊다. 버전을 잘 맞춰야 한다. 아래와 같은 에러가 발생해서 버전을 수정해야 했다.
.initialize Unable to obtain CGLib fast class and/or method implementation for class com.google.event.EventMessage, error msg is net/sf/cglib/core/DebuggingClassWriter
java.lang.VerifyError: net/sf/cglib/core/DebuggingClassWriter
아래 cglib를 기반으로 잘 맞는 버전을 찾으면 된다.
https://github.com/cglib/cglib/releases
asm 4.x은 cglib 3.1로 맞추고, asm 3.1은 cglib 2.2로 맞춰야 한다.
'general java' 카테고리의 다른 글
[spring] schedule 어노테이션을 사용해 똑같은 주기가 되지 않도록 하기 (0) | 2017.03.02 |
---|---|
logback 설정의 encoder (0) | 2017.02.09 |
ObjectMapper, UnrecognizedPropertyException, JsonInclude 예시 (0) | 2016.12.17 |
guava의 hash function과 redis의 hash function (murmur) (0) | 2016.12.07 |
[jenkins] 사용할 수 있는 jenkins 환경 변수 (0) | 2016.08.20 |