I want to develop web app with spring boot and i want to address my javascript and css resources in jsp files. i config my access to this files from jsp in dispatcher-servlet.xml like this:
<mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
and in my jsp file i can use below code to access that:
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<img class="first-slide home-image" src="<spring:url value="/resources/images/back1.jpg"/>" alt="First slide">
how i do config mvc:resources mapping in spring boot?