Hello guys. I successfully loaded local files in Spring Web MVC Application, such as javascript files, css files or image files. They were working fine untill yesterday. All the pictures are not being rendered in JSP view. An error is shown similar to that of title. Here is my configuration.
======= HTML CODE ==========
<img src='<c:url value="/resources/images/seat_info.png"/>' alt="${ImagePath}">
======= XML CODE ==========
<mvc:resources mapping="/resources/**" location="/resources/" cache-period="31556926"/> <mvc:annotation-driven />
An earlier version of this software is working as expected (i.e. loading pictures). So what could be wrong ?