问题描述
- 为什么访问java web工程名可以跳转到前台页面?
-
为什么访问java web工程名可以跳转到前台页面?
为什么访问java web工程名可以跳转到前台页面?
为什么访问java web工程名可以跳转到前台页面?
解决方案
1.默认tomcat容器的默认页面。
<welcome-file-list>
<welcome-file>/index.html</welcome-file>
</welcome-file-list>
这种方式适合访问静态的页面(也包括JSP)或者说是没有任何参数的页面。
2.spirng mvc 默认index controller 方式
如果在tomcat容器没有配置默认页面,怎spring mvc 会主动去寻找/index的controller,如果有则会调用,没有则会显示404页面。
@RequestMapping(value="/index")
public ModelAndView index(HttpServletRequest request, HttpServletResponse response){
return new ModelAndView("index");
}
3.spirng mvc 配置根节点访问“/”方式
这种方法比较极端,就是配置一个名为“/”的controller,就是输入完网址之后就会调用。这种方法是前面两种方法都没有配置的时候。
@RequestMapping(value="/") public ModelAndView index(HttpServletRequest request, HttpServletResponse response){ return new ModelAndView("index"); }
解决方案二:
入口在哪里?是web.xml配置文件?拦截器?还是其他的配置文件??
解决方案三:
web.xml中
<web-app>
<welcome-file-list>
<welcome-file>index.html</welcome-file> --这里配置的默认页面
</welcome-file-list>
</web-app>
解决方案四:
只要是web工程,当访问这个项目的时候,它会首先先访问web.xml的,然后根据你自己配的框架进入相应的配置文件!!!
解决方案五:
有拦截器的话,先经过拦截器判断,然后进web.xml
时间: 2024-09-24 14:36:30