I am trying to include jquery in a spring mvc app but am having some trouble (I am new to spring mvc). I created a folder called js under the webapp folder, but am not sure what to include my view to include the file.
I've tried:
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-2.0.3.min.js"></script>
however, this creates a path that cannot be resolved since I have no controller for /js path.
My question is how is this usually done, is a controller created that returns the jquery-2.0.3.min.js file?