Проецирование байта объекта POJO [] на Kotlin ByteArray с помощью Spring JPA, выдающего ошибку «требуемый интерфейс» - PullRequest
0 голосов
/ 10 октября 2019
  • Spring Boot: 2.1.6.RELEASE
  • Java: 1.8
  • Kotlin: 1.3.50
  • Спящий режим: 1.4.194

Я настраиваю собственный запрос в слое Repository, и одно из сопоставлений значений - Java.byte [] -> Kotlin.ByteArray. При тестировании он выдает:

java.lang.IllegalArgumentException: Projection type must be an interface!

У меня в другом приложении есть функционально эквивалентный процесс доступа к тем же данным, что приводит к путанице.

Я сравнил два проекта - толькоЯ могу подумать о некоторой зависимости, которая вызывает проблему.

Я выделил, что запрос работает без типа ByteArray на интерфейсе.

Объект Screenshot также был в Java сбайт [], но я попытался преобразовать его в класс Kotlin с помощью ByteArray.

Interface

interface ScreenShotRepository : CrudRepository<ScreenShot, Int> {

  @Query(value = "SELECT s.id, s.filename, s.file FROM screen_shot AS s " +
      "INNER JOIN profile_screen_shots AS pss ON pss.screen_shots_id = s.id " +
      "INNER JOIN profile AS p ON pss.profile_id = p.id " +
      "WHERE p.id = ?1", nativeQuery = true)
  fun getScreenshotsByProfileId(profileId: Int): List<ScreenshotQueryResult>
}

QueryResult

interface ScreenshotQueryResult {
  val id: Int
  val filename: String
  val file: ByteArray
}

Должен получить файл в виде ByteArray

ОШИБКА:

java.lang.IllegalArgumentException: Projection type must be an interface!

    at org.springframework.util.Assert.isTrue(Assert.java:118)
    at org.springframework.data.projection.ProxyProjectionFactory.createProjection(ProxyProjectionFactory.java:100)
    at org.springframework.data.projection.SpelAwareProxyProjectionFactory.createProjection(SpelAwareProxyProjectionFactory.java:45)
    at org.springframework.data.projection.ProjectingMethodInterceptor.getProjection(ProjectingMethodInterceptor.java:131)
    at org.springframework.data.projection.ProjectingMethodInterceptor.invoke(ProjectingMethodInterceptor.java:80)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.data.projection.ProxyProjectionFactory$TargetAwareMethodInterceptor.invoke(ProxyProjectionFactory.java:245)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:59)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
    at com.sun.proxy.$Proxy146.getFile(Unknown Source)
    at mvc.repositories.ScreenshotRepositoryTest.getScreenshotsByProfileId(ScreenshotRepositoryTest.kt:77)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.springframework.test.context.junit4.statements.RunBeforeTestExecutionCallbacks.evaluate(RunBeforeTestExecutionCallbacks.java:74)
    at org.springframework.test.context.junit4.statements.RunAfterTestExecutionCallbacks.evaluate(RunAfterTestExecutionCallbacks.java:84)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
    at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
    at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:251)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:97)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:190)
...