springMVC出现404出错误,idea如何配置tomcat
如何解决SpringMVC项目运行出现定位不到资源问题 404 error
1、配置文件的问题
2、tomcat版本的问题 (10.0会出现404error)
类型1、配置文件的问题:解决方法直接看案例
项目目录结构
web.xml的代码
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<servlet>
<servlet-name>MyWebSpringMVC</servlet-name>
<!--配置请求派遣器,会自动的创建mvc容器和派遣器对象-->
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--设置配置文件加载位置,也就是所谓的容器配置文件,也就是spring系列框架的配置文件-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:MySpringMVC.xml</param-value>
</init-param>
<!--需要在项目加载的时候创建 DispatcherServlet,因为需要实现创建好mvc容器-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>MyWebSpringMVC</servlet-name>
<!--用两种方式:
1、使用 *.xxxx,的方式去指定特定的扩展名
2、使用 “/”的方式 后面再说
-->
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>doDemo.jsp</welcome-file>
</welcome-file-list>
</web-app>
doDemo.jsp的代码
<%--
Created by IntelliJ IDEA.
User: zhoujian
Date: 2021/4/26
Time: 21:57
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>使用派遣器调度来处理请求</title>
</head>
<body>
<p>第一个派遣器请求</p>
<%--最好配合/一起使用,也可以直接的去掉/--%>
<p><a href="some.do">发送请求</a></p>
</body>
</html>
MySpringMVC.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<!-- 组件扫描-->
<context:component-scan base-package="com.zj"/>
</beans>
doDemo控制器对象代码
package com.zj;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class doDemo {
@RequestMapping(value = "some.do")
public ModelAndView doSome(){
System.out.println("==============================");
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("doLoading","Loading........!");
modelAndView.setViewName("/show.jsp");
return modelAndView;
}
}
show.jsp代码
<%--
Created by IntelliJ IDEA.
User: zhoujian
Date: 2021/4/27
Time: 12:16
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<p>${doLoading}</p>
</body>
</html>
类型2、tomcat版本的问题 (10.0会出现404error)
-
上面的安装很简单的,只需要你配置一下账户和密码,需要选择的时候全选择,前提是你有安装了jdk,安装完成之后点击bin目录下的
-
配置idea