配置默认访问controller方法


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

<!-- 定义无Controller的path<->view直接映射 -->
<mvc:view-controller path="/" view-name="redirect:login" />

在web.xml配置文件中配置

<welcome-file-list>
   <welcome-file>login</welcome-file>
</welcome-file-list>

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

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

web.xml文件配置

<welcome-file-list>
   <welcome-file></welcome-file>
</welcome-file-list>

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

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

助力广东及东莞地区开发者,代码托管、在线学习与竞赛、技术交流与分享、资源共享、职业发展,成为松山湖开发者首选的工作与学习平台

更多推荐