I have the following servlet mapping present -
You need to modify links to the images. When you write
<mvc:resources mapping="/images/**" location="/resources/images/" />
Then your HTTP requests to /resources/images
are translated to webapp/images
folder on the server. So in the html you should have something like this:
<img src="<spring:url value='/resources/images/logo.png'/>"