I download the latest Spring download and cannot find the any html file under the samples\tiles-example.
The Index.jsp has this line:
<c:redirect url="/index.html"/>
If someone got this to work, can they share with me what they did.
Printable View
I download the latest Spring download and cannot find the any html file under the samples\tiles-example.
The Index.jsp has this line:
<c:redirect url="/index.html"/>
If someone got this to work, can they share with me what they did.
Spring uses url mappings that map url's to a controller, so even though I haven't looked at the tiles-example app, I'm sure you will find a mapping of *.html to a controller, and there should not be a .html file. Look up SimpleUrlHandlerMapping in springs docs for more info.