I now know that we can use this in the servlet-context.xml to add to the resources:
<resources mapping="/resources/**" location="/resources/,file:/home/john/temp_jpgs/" />
However I would like...
Type: Posts; User: mpegjohn; Keyword(s):
I now know that we can use this in the servlet-context.xml to add to the resources:
<resources mapping="/resources/**" location="/resources/,file:/home/john/temp_jpgs/" />
However I would like...
OK I have worked it out:
In server-context.xml I now have:
<resources mapping="/resources/**" location="/resources/,file:/home/john/temp_jpgs/" />
This will allow the images inside the file...
Hi,
I am very new to Spring. I am starting a web MVC project to display video shots as thumbnails.
These are all stored within a repository, not within the webapp domain, eg on the filesystem...