Map Home Page SpringMVC

0

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?

    
asked by anonymous 05.04.2017 / 19:02

1 answer

1
public class Treinamento {
    @RequestMapping("/")
    public String inicio(){
        return "redirect:index";
    }
}
    
05.04.2017 / 20:56