设置web项目启动默认页面为controller方法
配置默认访问controller方法方法一:在mvc配置文件中配置<!-- 定义无Controller的path<->view直接映射 --><mvc:view-controller path="/" view-name="redirect:login" />在web.xml
·
配置默认访问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">
更多推荐
已为社区贡献2条内容
所有评论(0)