In a Spring MVC app, what is the best approach for putting external JavaScript files in WEB-INF/ along with jsps?
/WEB-INF/spring/foo.jsp which has an include of
<script src="foo.js"></script>.
I want foo.js in the WEB-INF/spring/ directory right beside the owning jsp?
I've noticed Spring has a ResourceSerlvet, but I'm not sure if that is the way to do this...