-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Spring MVC Beginner's Guide
By :

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, namely P1234.png
, P1235.png
, and P1236.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 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...
Change the font size
Change margin width
Change background colour