说,我有以下界面:
interface AppRepository : GraphRepository<App> {
@Query("""MATCH (a:App) RETURN a""")
fun findAll(): List<App>
}
在测试中,我想检查查询字符串的细节,因此我这样做
open class AppRepositoryTest {
lateinit @Autowired var appRepository: AppRepository
@Test
open fun checkQuery() {
val productionMethod = appRepository.javaClass.getDeclaredMethod("findAll")
val productionQuery = productionMethod!!.getAnnotation(Query::class.java)
//demo test
assertThat(productionQuery!!.value).isNotEmpty() //KotlinNPE
}
}
由于我不理解的原因,
productionQuery
是n null
。我仔细检查了测试类中导入的Query
和存储库中Query
的类型是否相同。因此,为什么在这种情况下
productionQuery
null
? 最佳答案
您是在实现类(即findAll
实例的类)上的appRepository
上加载注释,而不是在接口(interface)上的findAll
上加载注释。要从AppRepository
加载注释,请执行以下操作:
val productionMethod = AppRepository::class.java.getDeclaredMethod("findAll")
val productionQuery = productionMethod!!.getAnnotation(Query::class.java)