Spring的基本操作流程

1.创建一个maven空项目

2.导入jar包

<dependencies>
    <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>5.3.12</version>
    </dependency>
</dependencies>

3.删除src目录,方便子项目的创建。

Spring的基本操作流程

4.新建一个口的Maven模块

Spring的基本操作流程

Spring的基本操作流程

5.在java下面创建一个包

Spring的基本操作流程 

 6.在com.LJQ.dao包下面创建一个接口,一个UserDao接口

Spring的基本操作流程

 7.在com.LJQ.dao包下面创建一个实现类,一个UserDaoImpl接口Spring的基本操作流程

 8.Impl实现接口

Spring的基本操作流程

 

 

上一篇:springboot单元测试 junit


下一篇:Mybatis框架