spring mvc 跳转首页

try this: 
<mvc:view-controller path="/" view-name="index"> 

make sure: add request mapping in a controller class, like this: 
@RequestMapping("/index") 
public String index(Model model){ 
    return "index";// which mapping to index.jsp by viewResolver 

你可能感兴趣的:(spring mvc)