设置web项目启动默认页面为controller方法

配置默认访问controller方法


方法一:
在mvc配置文件中配置


<mvc:view-controller path="/" view-name="redirect:login" />

在web.xml配置文件中配置

file-list>
   file>loginfile>
file-list>

方法二:
在controller类和该类方法上注解路径(“/”)

@Controller
@RequestMapping("/")
public class index {
  @RequestMapping(value = "/", method = RequestMethod.GET)
  public String index(Model model){
    return "index";
  }
}

web.xml文件配置

file-list>
   file>file>
file-list>

方法三:
在默认页面index.jsp内加

<meta http-equiv="refresh" content="0; url=login">

你可能感兴趣的:(jsp,java,spring)