I have an environment variable RESOURCES_FOLDER. Which i want to read in a class inside my Springboot application
@Value("${RESOURCES_FOLDER}")
private static String resourcesFolder;
When I try printing the value it gives null instead of printing the actual path in my environment variable. Can someone please help me with this ??