SpringMvcStepByStep 项目教程
1. 项目的目录结构及介绍
SpringMvcStepByStep/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── in28minutes/
│ │ │ ├── controller/
│ │ │ ├── model/
│ │ │ └── service/
│ │ ├── resources/
│ │ └── webapp/
│ │ ├── WEB-INF/
│ │ │ ├── views/
│ │ │ └── web.xml
│ │ └── resources/
├── pom.xml
└── README.md
src/main/java/com/in28minutes/
: 包含项目的Java源代码,分为controller
、model
和service
三个主要包。src/main/resources/
: 包含项目的配置文件和其他资源文件。src/main/webapp/
: 包含Web应用的静态资源和JSP文件。src/main/webapp/WEB-INF/views/
: 包含JSP视图文件。src/main/webapp/WEB-INF/web.xml
: Web应用的部署描述符。pom.xml
: Maven项目的配置文件。
2. 项目的启动文件介绍
项目的启动文件主要是web.xml
,它位于src/main/webapp/WEB-INF/
目录下。以下是web.xml
的关键配置:
<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_3_1.xsd"
version="3.1">
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-mvc-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
DispatcherServlet
: 配置Spring MVC的前端控制器。contextConfigLocation
: 指定Spring配置文件的位置。ContextLoaderListener
: 用于加载Spring的上下文配置。
3. 项目的配置文件介绍
项目的配置文件主要是spring-mvc-servlet.xml
,它位于src/main/webapp/WEB-INF/
目录下。以下是spring-mvc-servlet.xml
的关键配置:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.in28minutes" />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResource