My Spring boot app has this application structure:
Missing stereotype annotation on top of class
@Component public class EntityManager { @Value("${language}") private static String newLang; public EntityManager(){ System.out.println("langauge is: " + newLang); } }