SyntaxFix
Write A Post
Hire A Developer
Questions
The shortest way is: @RequestMapping({"", "/", "welcome"})
@RequestMapping({"", "/", "welcome"})
Although you can also do:
@RequestMapping(value={"", "/", "welcome"})
@RequestMapping(path={"", "/", "welcome"})