does anyone knows how to create default method in ...
# spring
f
does anyone knows how to create default method in a Repository interface with Kotlin?
Copy code
interface ContactRepository : MongoRepository<Contact, String> {
    fun abc() {
    }
}
This code doesn't work, it throws:
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property abc found for type Contact!
but default method in repository does work in java