SpringMvcStepByStep 项目教程

SpringMvcStepByStep 项目教程

SpringMvcStepByStepSpring MVC Tutorial for beginners - In 25 Small Steps项目地址:https://gitcode.com/gh_mirrors/sp/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源代码,分为controllermodelservice三个主要包。
  • 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

SpringMvcStepByStepSpring MVC Tutorial for beginners - In 25 Small Steps项目地址:https://gitcode.com/gh_mirrors/sp/SpringMvcStepByStep

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

郁虹宝Lucille

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值