SSM整合所需的依赖包

迷南。 2022-11-11 06:19 266阅读 0赞
  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>org.example</groupId>
  7. <artifactId>ssm2</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.mybatis</groupId>
  16. <artifactId>mybatis</artifactId>
  17. <version>3.5.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.mybatis</groupId>
  21. <artifactId>mybatis-spring</artifactId>
  22. <version>2.0.2</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>8.0.18</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-webmvc</artifactId>
  32. <version>5.2.12.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-jdbc</artifactId>
  37. <version>5.1.19.RELEASE</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-tx</artifactId>
  42. <version>5.1.19.RELEASE</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-web</artifactId>
  47. <version>5.2.12.RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-aop</artifactId>
  52. <version>5.3.4</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-aspects</artifactId>
  57. <version>5.3.4</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <version>4.12</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.servlet</groupId>
  66. <artifactId>jstl</artifactId>
  67. <version>1.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.aspectj</groupId>
  71. <artifactId>aspectjweaver</artifactId>
  72. <version>1.9.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.servlet</groupId>
  76. <artifactId>servlet-api</artifactId>
  77. <version>2.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet.jsp</groupId>
  81. <artifactId>jsp-api</artifactId>
  82. <version>2.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.mchange</groupId>
  86. <artifactId>c3p0</artifactId>
  87. <version>0.9.5.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>log4j</groupId>
  91. <artifactId>log4j</artifactId>
  92. <version>1.2.17</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok</artifactId>
  97. <version>1.18.18</version>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <resources>
  102. <resource>
  103. <directory>src/main/java</directory>
  104. <includes>
  105. <include>**/*.properties</include>
  106. <include>**/*.xml</include>
  107. </includes>
  108. <filtering>true</filtering>
  109. </resource>
  110. <resource>
  111. <directory>src/main/resources</directory>
  112. <includes>
  113. <include>**/*.properties</include>
  114. <include>**/*.xml</include>
  115. </includes>
  116. <filtering>true</filtering>
  117. </resource>
  118. </resources>
  119. </build>
  120. </project>

发表评论

表情:
评论列表 (有 0 条评论,266人围观)

还没有评论,来说两句吧...

相关阅读