2014-12-30 2 views
1

거기에 JDK8 기능을 사용하면 모델 클래스의 계측에 문제가 있습니다 (lamba). 이 클래스는 자동으로 건너 뜁니다.ActiveJDBC 및 JDK8 스트림

내가 전화 할 때 :

CtClass clazz = getClazz("me.factorify.server.person.domain.Person"); 
clazz.getModifiers(); 

내가이 예외를 얻을 :

java.lang.RuntimeException: java.io.IOException: invalid constant type: 18 at 14 
     at javassist.CtClassType.getClassFile2(CtClassType.java:204) 
     at javassist.CtClassType.getModifiers(CtClassType.java:388) 
     at me.factorify.server.person.domain.PersonTest.testName(PersonTest.java:19) 
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
     at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) 
     at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) 
     at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) 
     at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) 
     at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) 
     at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) 
     at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) 
     at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) 
     at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) 
     at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) 
     at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) 
     at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) 
     at org.junit.runners.ParentRunner.run(ParentRunner.java:309) 
     at org.junit.runner.JUnitCore.run(JUnitCore.java:160) 
     at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74) 
     at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211) 
     at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67) 
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
     at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134) 
    Caused by: java.io.IOException: invalid constant type: 18 at 14 
     at javassist.bytecode.ConstPool.readOne(ConstPool.java:1044) 
     at javassist.bytecode.ConstPool.read(ConstPool.java:984) 
     at javassist.bytecode.ConstPool.<init>(ConstPool.java:125) 
     at javassist.bytecode.ClassFile.read(ClassFile.java:770) 
     at javassist.bytecode.ClassFile.<init>(ClassFile.java:114) 
     at javassist.CtClassType.getClassFile2(CtClassType.java:191) 
     ... 28 more 

이 그것은와 Javassist/ASM의 이전 버전에 의해 발생합니다.

해결 방법이 있습니까?

편집 : 나는 그것을 고정 풀 요청이 풀 요청 jacub.petr @https://github.com/javalite/activejdbc/pull/336

답변

1

, 감사를 만들었습니다 생각합니다. 최신 스냅 샷을 구축하여 배포했습니다. 버전 1.4.9-SNAPSHOT을 https://oss.sonatype.org/content/repositories/snapshots/org/javalite/activejdbc/1.4.10-SNAPSHOT/에서 가져 와서 다시 시도하십시오. 우리는 곧 1.5를 발표 할 예정이며 수정 내용이 포함될 것입니다.

+0

멋진 프레임 워크를 가져 주셔서 감사합니다. 내 지역에 문제가있었습니다. 빌드 (테스트)가 실패했습니다. 설명서에서 언급 할 수 있을까요? (미국 밖에있을 때와 같이 -Duser.language = en -Duser.country = US -Duser.variant = US로 실행해야합니다. 또는 pom.xml에 추가하고 해당 로케일로만 빌드하십시오. 나는 많은 시험을 망쳤다. :-) –

+0

pom.xml에 추가하는 것이 약간은 좋지만 확실한 추가가 필요하며 그럴 가치가 없을 수도 있습니다 :-) –

+0

@ jakub.petr, 새로운 문제를 추가했습니다 : https://github.com/javalite/activejdbc/issues/337 – ipolevoy