Hello
I would like to map a homepage using springmvc
'I have this method: My
Controller
public class Treinamento {
@RequestMapping("/inicio")
public String inicio(){
return "index";
}
}
In my
web.xml
<welcome-file-list>
<welcome-file>inicio</welcome-file>
</welcome-file-list>
How to map?