Hello everyone I caught an issue with js files in jsp I have a warning
<script src="<c:url value="bower_components/jquery/dist/jquery.min.js"/>"></script>
<script src="<c:url value="bower_components/bootstrap/dist/js/bootstrap.min.js"/>"></script>
<script src="<c:url value="bower_components/metisMenu/dist/metisMenu.min.js"/>"></script>
<script src="<c:url value="dist/js/sb-admin-2.js"/>"></script>
My jsp can't access to js files
<mvc:resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources
in the /WEB-INF/views directory -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<mvc:annotation-driven />
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/bap/bower_components/jquery/dist/jquery.min.js] in DispatcherServlet with name 'appServlet'
can someone tell me what's the problem please, thank you