前言

学习了 Spring、Spring MVC 和 MyBatis 三大框架之后,我们需要将其整合起来,而在正式编写业务逻辑之前,我们可以先搭建好一个项目框架,将这三个框架进行整合配置。整合后的框架不仅适用于本项目,对于后面其他的项目开发也可以在该整合的框架基础上继续修改开发。

涉及技术栈

整合过程中主要用到的工具和技术栈如下:

  1. MyBatis 3.5.5
  2. Spring 5.2.7
  3. Spring MVC 5.2.7
  4. Tomcat 9.0.x
  5. MySQL 5.7.x
  6. OS:Windows 10 2004
  7. IDE:IntelliJ IDEA 2020.1

SSM 项目结构准备

  1. 首先是去创建一个普通的 Maven 项目,然后添加 Web 依赖,具体过程可以参照我的另一篇文章 Spring MVC 实例创建,创建后的项目结构如下图所示:

项目框架结构搭建 - 图1

  1. 接着去建立目录结构;

项目框架结构搭建 - 图2

创建后的目录结构如上图所示,创建项目后自带的目录就不解释了,新创建的对应的目录及包功能解释如下:

目录 功能
src/main/java/xxx/pojo 实体类层,一般对应数据库中的表,将数据封装为一个对象,用于在 dao
service
层之间传输
src/main/java/xxx/dao 数据访问层,一般用于封装数据库操作接口
src/main/java/xxx/dto 数据传输层,用于 service
controller
层之间的数据传输
src/main/java/xxx/controller 控制层,Spring MVC 大展拳脚的地方,用于 Model 和 View 交互
src/main/java/xxx/service 业务逻辑接口层,封装业务逻辑接口
src/main/java/xxx/service/impl 业务逻辑实现层,实现业务逻辑接口层中的接口,还有一般事务控制等
src/main/resources/spring 存放 Spring 配置相关文件,一般分别对应 dao
service
controller
三层
src/main/resources/mapper 存放 dao
层中接口对应的 sql
web/WEB-INF/jsp 存放前端展示的 jsp
页面
web/resoruces 该目录下又有三个子目录,用于存放项目对应静态资源
  1. 在项目中导入项目所需的依赖包,由于是使用 Maven 来进行管理,所以只需要在项目 pom.xml 中加入相应依赖即可;
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.cunyu</groupId>
  7. <artifactId>book-manage-system</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <!-- 1.单元测试 -->
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>4.13</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <!-- 2.日志 -->
  18. <dependency>
  19. <groupId>ch.qos.logback</groupId>
  20. <artifactId>logback-classic</artifactId>
  21. <version>1.2.3</version>
  22. </dependency>
  23. <!-- 3.数据库 -->
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>5.1.49</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.mchange</groupId>
  31. <artifactId>c3p0</artifactId>
  32. <version>0.9.5.5</version>
  33. </dependency>
  34. <!-- 4.MyBatis -->
  35. <dependency>
  36. <groupId>org.mybatis</groupId>
  37. <artifactId>mybatis</artifactId>
  38. <version>3.5.5</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mybatis</groupId>
  42. <artifactId>mybatis-spring</artifactId>
  43. <version>2.0.5</version>
  44. </dependency>
  45. <!-- 4.Servlet -->
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>servlet-api</artifactId>
  49. <version>2.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet</groupId>
  53. <artifactId>jstl</artifactId>
  54. <version>1.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>javax.servlet.jsp</groupId>
  58. <artifactId>jsp-api</artifactId>
  59. <version>2.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.fasterxml.jackson.core</groupId>
  63. <artifactId>jackson-databind</artifactId>
  64. <version>2.11.0</version>
  65. </dependency>
  66. <!-- 5.Spring 核心 -->
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-core</artifactId>
  70. <version>5.2.7.RELEASE</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-beans</artifactId>
  75. <version>5.2.7.RELEASE</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-context</artifactId>
  80. <version>5.2.7.RELEASE</version>
  81. </dependency>
  82. <!-- 6.Spring DAO -->
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-jdbc</artifactId>
  86. <version>5.2.7.RELEASE</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-tx</artifactId>
  91. <version>5.2.7.RELEASE</version>
  92. </dependency>
  93. <!-- 7. Spring Web -->
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-web</artifactId>
  97. <version>5.2.7.RELEASE</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-webmvc</artifactId>
  102. <version>5.2.7.RELEASE</version>
  103. </dependency>
  104. <!-- 8.Spring test -->
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-test</artifactId>
  108. <version>5.2.7.RELEASE</version>
  109. </dependency>
  110. </dependencies>
  111. </project>
  1. 一般来说,只要在项目中加上第 4 步中的依赖,项目后续是可以正常运行的,但是有时候有可能会遇到静态资源导出问题,为此,最好将下面的配置也加入到 pom.xml 中;
  1. <!-- 静态资源导出问题 -->
  2. <build>
  3. <resources>
  4. <resource>
  5. <directory>src/main/java</directory>
  6. <includes>
  7. <include>**/*.properties</include>
  8. <include>**/*.xml</include>
  9. </includes>
  10. <filtering>false</filtering>
  11. </resource>
  12. <resource>
  13. <directory>src/main/resources</directory>
  14. <includes>
  15. <include>**/*.properties</include>
  16. <include>**/*.xml</include>
  17. </includes>
  18. <filtering>false</filtering>
  19. </resource>
  20. </resources>
  21. </build>

总结

好了,经过上面的准备工作之后,一个最简单的 SSM 框架就准备好了,本篇内容就到此结束了。接下来,就该去将 SSM 整合起来了,具体请看下一篇文章。