Hi!
I'm new using Spring-DM with Spring-MVC, and I would like to assign a welcome-file to my web application.
Using the web.xml file would be something like:
The problem is that I don't want to use the web.xml file but instead put this configuration in the manifest.mf file. Is this possible?Code:<welcome-file-list> <welcome-file>index.htm</welcome-file> </welcome-file-list>
I know that is possible to do that:
Web-DispatcherServletUrlPatterns: *.htm
instead of:
Is there something similar for welcome-file? Am I wrong?Code:<url-pattern>*.htm</url-pattern>
Thank you very much.
Regards,
Victor




