I\'m writing an SSM project in Kotlin and this happens as long as I try to annotate a class (a service implementation) with @Service.
@Service
Kotlin's reflection facilities needed by Spring are shipped in a separate JAR. Try adding it into your build:
build.gradle:
build.gradle
compile 'org.jetbrains.kotlin:kotlin-reflect:1.1.51'
pom.xml:
pom.xml
org.jetbrains.kotlin kotlin-reflect 1.1.51