1

JDK8 機能 (lamba) を使用する場合、Model クラスの計測に問題があります。それらのクラスを黙ってスキップするだけです。

電話しようとすると:

 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 が原因です。

そのための回避策はありますか?

編集:私はそれを修正し、このプルリクエストを作成したと思います https://github.com/javalite/activejdbc/pull/336

4

1 に答える 1

1

@jacub.petr、プルリクエストをありがとう。お客様の修正を含む最新のスナップショットを作成してデプロイしました。https://oss.sonatype.org/content/repositories/snapshots/org/javalite/activejdbc/1.4.10-SNAPSHOT/からバージョン 1.4.9-SNAPSHOT を取得して、再試行してください。すぐに 1.5 をリリースし、あなたの修正が含まれます。

于 2014-12-30T20:55:15.730 に答える