I am trying to change my Spring MVC project's root URL to '/' instead of '/springmvc' by default.
For example, I want the root url (which is mapped to @RequestParam('/')) to be http://localhost:8080/ instead of http://localhost:8080/springmvc
How could I do this? Thank you!