In my Spring 3.0 app, I have some resources in /WEB-INF/dir. At runtime I need some of them as an InputStream (or some other type). How can I retri
/WEB-INF/dir
InputStream
Here is an easiest way to do it via annotation:
import org.springframework.core.io.Resource; @Value("classpath:") private Resource cert;