Time for action – serving static resources
Let's see how we can serve static images with Spring MVC:
Place some images under the
src/main/webapp/resources/images/
directory; I have used three product images, namelyP1234.png
,P1235.png
, andP1236.png
.Add the following tag in our web application context's configuration
DispatcherServlet-context.xml
file:<mvc:resources location="/resources/" mapping="/resource/**"/>
Now, run our application and enter
http://localhost:8080/webstore/resource/images/P1234.png
(change the image name in the URL based on the images you placed in step 1).You are now able to view the image you requested in the browser.
What just happened?
What just happened was simple; in step 1, we placed some image files under the src/main/webapp/resources/images/
directory. In step 2, we just added the <mvc:resources>
tag in the web application context configuration to tell Spring where these image files are located in our project so that spring can serve those files...