Micronaut - A common mistake with the use of @Value
Micronaut provides io.micronaut.context.annotation.Value for injecting value from the property source into a variable. Spring framework also provides a similar annotation.
Can you spot the mistake in the below code?
package com.nareshak;
import io.micronaut.context.annotation.Value;
import io.micronaut.http.MediaType;
import io.micronaut.