I am having issues using my properties with @Value annotation and I am wondering is there a way when debugging to check the value of an @Value annotation. For example I would stop at a breakpoint in my code and evaluate
@Value("${myString}")
String x;
or say if i wanted to check the spring profile i would evaluate
@Value("${spring.profiles.active}")
String springProfile;
I do only see null values for these though?