springMVC配置访问url总报404的错误怎么解决? 50

web.xml文件:<?xmlversion="1.0"encoding="UTF-8"?>http://www.w3.org/2001/XMLSchema-instan... web.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
http://www.w3.org/2001/XMLSchema-instance" xmlns="Java EE: XML Schemas for Java EE Deployment Descriptors" xsi:schemaLocation="Java EE: XML Schemas for Java EE Deployment Descriptorshttp://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>spring</display-name>

<!-- 加载spring容器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext-*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- springmvc前端控制器 -->
<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/springmvc.xml</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>springmvc</servlet-name>

<url-pattern>*.action</url-pattern>
</servlet-mapping>

<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>

</web-app>

直接访问localhost:8080/项目名称/ 都会出现404的错误
展开
 我来答
求索上下五千年
2015-11-18 · TA获得超过1108个赞
知道小有建树答主
回答量:1212
采纳率:0%
帮助的人:141万
展开全部

404的错误提示是因为找不到文件,说说我的几个建议(以下均是默认楼主的jdk,tomcat,spring等环境配置没有问题的):

  1. 确保已经在tomcat发布项目并且运行

  2. 确保输入的Url都没有错误(这个经常是有些大小写的错误)

  3. 直接访问localhost:8080/项目名称/ ,会默认访问项目的index.jsp项目的,查看一下项目中有没有index.jsp

  4. 如果jsp页面不是在WEebRoot根目录的,输入格式应该为:localhost:8080/项目名称/装jsp的文件名/xxx.jsp

指尖点滴bV
2017-09-08 · TA获得超过626个赞
知道小有建树答主
回答量:1258
采纳率:71%
帮助的人:246万
展开全部
看是不是端口问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式