对于tomcat启动后怎么去加载首页的问题。由于了解少的缘故,这里跳坑用了很长时间。
一、默认加载规则
首先这里说明一下首页的加载规则,会优先去加载index.html;如果index.html不存在,则会找index.jsp;如果index.jsp不存在,则会返回404错误;
我们想配置指定的首页的话,在web.xml文件中添加配置指定文件
<welcome-file-list>
<welcome-file>welcome.jsp</welcome-file>
</welcome-file-list>
然后在webapp下创建welcome.jsp,启动项目后则会加载welcome.jsp;
<welcome-file-list>
<welcome-file>welcome.html</welcome-file>
</welcome-file-list>
添加此配置可以加载webapp下的welcome.html文件;
二、配置DispatchServlet之后的加载
DispatcherServlet是前端控制器设计模式的实现,提供SpringWebMVC的集中访问点;
我们知道Springmvc处理一个请求的加载过程,所以在创建完项目之后,我就参照网上资料配置了DispatchServlet,而这个配置,才是入坑的开始;我在web.xml文件中的配置:
<!--前端控制器-->
<servlet>
<servlet-name>SpringMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringMVC</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
配置了前端控制器之后,我发现首页加载出问题了,404!!!按照默认加载规则来说,我webapp下存在index.html文件啊,页面找不到?然后我又创建了index.jsp文件放在webapp下,删除了index.html,页面加载到了!!!这里就使我疑惑了,然后我就想加载index.html,我就尝试第三种使用配置来访问:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
还是404!!!加载不到html,我就纳闷的很,去看报错!!!
org.springframework.web.servlet.PageNotFound.noHandlerFound No mapping found for HTTP request with URI [/] in DispatcherServlet with name 'SpringMVC'
没有找到URI为[/]的映射,那我就加一个映射,这里我参照网上配置也配置了视图解析器
<!--视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name