Closed as not planned
Description
With an application.yml
like so:
my-app:
duration: 4h
and a class property like so:
import kotlin.time.Duration
@Service
class MyClass(
@Value("\${my-app.duration}") private val followDuration: Duration
)
getting
Unsatisfied dependency expressed through constructor parameter 3: Failed to convert value of type 'java.lang.String' to required type 'long'; For input string: "PT4h"
...
Caused by: org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'long'; For input string: "PT4h"
...
Caused by: java.lang.NumberFormatException: For input string: "PT4h"
Spring boot version: 3.1.4
Kotlin: 1.9.20-Beta