Is it possible to write a Kotlin extension functio...
# getting-started
k
Is it possible to write a Kotlin extension function that uses an autowired Spring bean?
d
Kotlin extension functions are just syntax-sugar for static methods. From a Java standpoint they behave just like static methods. So the answer is "Not really".
k
Thanks!
103 Views