Hello ${name}
}}} web.xml {{{#!highlight xmlHello ${name}
}}} == ApplicationContextAware == * https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/context/ApplicationContextAware.html ApplicationContextAware, Interface to be implemented by any object that wishes to be notified of the ApplicationContext that it runs in. {{{#!highlight java void setApplicationContext(ApplicationContext applicationContext) // applicationContext.getBean() // applicationContext.getEnvironment() }}} == ResourceLoaderAware == * https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/context/ResourceLoaderAware.html ResourceLoaderAware, Interface to be implemented by any object that wishes to be notified of the ResourceLoader (typically the ApplicationContext) that it runs in. {{{#!highlight java void setResourceLoader(ResourceLoader resourceLoader) // resourceLoader.getClassLoader() // resourceLoader.getResource(String location) }}}