You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Kotlin-based, Spring Boot, native application. When targeted at SpringBoot 3.0.0-M5 it compiles and runs (natively) without error. When targeted at SpringBoot 3.0.0-RC1 it gets the following runtime error
Failed to create query for method public abstract java.lang.Object org.springframework.data.repository.kotlin.CoroutineCrudRepository.count(kotlin.coroutines.Continuation); No property 'count' found for type 'Customer'
I have a Kotlin-based, Spring Boot, native application. When targeted at SpringBoot 3.0.0-M5 it compiles and runs (natively) without error. When targeted at SpringBoot 3.0.0-RC1 it gets the following runtime error
The application is located at https://github.com/ketronkowski/spring-kotlin-native
The data class and repository interface in the application are defined as
and have the following runtime hints class imported
The gradle command to reproduce the problem is
./gradlew nativeRun
. Line 4 ofbuild.gradle.kts
contains the spring boot version number target.The text was updated successfully, but these errors were encountered: