小提示:
- 如果是400的错误就是请求出了问题
- 如果是500的错误就是代码出了问题
- 如果出现405就是HTTP使用的method类型不对导致的
控制器负责提供访问应用程序的行为,通常通过接口定义或注解定义两种方法实现
控制器负责解析用户的请求并将其转换为一个模型
在SpringMVC中的一个控制器类可以包含多个方法
在SpringMVC中对于控制器的配置方式有很多种
M模型(Model ) V视图(View) C控制(Controller)
(1)新建一个Moudle,springmvc-04-controller 添加web项目,添加依赖,在WEB-INF下面创建jsp包
(2) 配置web.xml
- "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>springmvcservlet-name>
- <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
- <init-param>
- <param-name>contextConfigLocationparam-name>
- <param-value>classpath:springmvc-servlet.xmlparam-value>
- init-param>
- <load-on-startup>1load-on-startup>
- servlet>
- <servlet-mapping>
- <servlet-name>springmvcservlet-name>
- <url-pattern>/url-pattern>
- servlet-mapping>
- web-app>
(3)创建springmvc-servlet.xml,添加Spring配置文件springmvc-servlet.xml
- "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"
- xmlns:mvc="http://www.springframework.org/schema/mvc"
- 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
- http://www.springframework.org/schema/mvc
- https://www.springframework.org/schema/mvc/spring-mvc.xsd">
-
- <context:component-scan base-package="com.gt.controller"/>
-
- <mvc:default-servlet-handler/>
-
- <mvc:annotation-driven/>
-
- <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">
-
- <property name="prefix" value="/WEB-INF/jsp/"/>
-
- <property name="suffix" value=".jsp"/>