【SSM框架整合的配置】青春须早为,岂能长少年。这篇文章主要讲述SSM框架整合的配置相关的知识,希望能为你提供帮助。
SSM框架整合的配置pom.xml(需要配置,以及资源到处问题)
< ?xml version="1.0" encoding="UTF-8"?>
< project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
< modelVersion> 4.0.0< /modelVersion>
< groupId> com.mac< /groupId>
< artifactId> ssmbulid< /artifactId>
< version> 1.0-SNAPSHOT< /version>
< !--依赖问题junit,数据库驱动,连接池,servlet,jsp,mybatis,mybatis-spring,spring -->
< dependencies>
< dependency>
< groupId> junit< /groupId>
< artifactId> junit< /artifactId>
< version> 4.12< /version>
< /dependency>
< !--数据库驱动-->
< dependency>
< groupId> mysql< /groupId>
< artifactId> mysql-connector-java< /artifactId>
< version> 5.1.47< /version>
< /dependency>
< !-- 数据库连接池 -->
< dependency>
< groupId> com.mchange< /groupId>
< artifactId> c3p0< /artifactId>
< version> 0.9.5.2< /version>
< /dependency>
< !--Servlet - JSP -->
< dependency>
< groupId> javax.servlet< /groupId>
< artifactId> servlet-api< /artifactId>
< version> 2.5< /version>
< /dependency>
< dependency>
< groupId> javax.servlet.jsp< /groupId>
< artifactId> jsp-api< /artifactId>
< version> 2.2< /version>
< /dependency>
< dependency>
< groupId> javax.servlet< /groupId>
< artifactId> jstl< /artifactId>
< version> 1.2< /version>
< /dependency>
< !--Mybatis-->
< dependency>
< groupId> org.mybatis< /groupId>
< artifactId> mybatis< /artifactId>
< version> 3.5.2< /version>
< /dependency>
< dependency>
< groupId> org.mybatis< /groupId>
< artifactId> mybatis-spring< /artifactId>
< version> 2.0.2< /version>
< /dependency>
< !--Spring-->
< dependency>
< groupId> org.springframework< /groupId>
< artifactId> spring-webmvc< /artifactId>
< version> 5.1.9.RELEASE< /version>
< /dependency>
< dependency>
< groupId> org.springframework< /groupId>
< artifactId> spring-jdbc< /artifactId>
< version> 5.1.9.RELEASE< /version>
< /dependency>
< dependency>
< groupId> org.projectlombok< /groupId>
< artifactId> lombok< /artifactId>
< version> 1.18.22< /version>
< /dependency>
< /dependencies>
< !--静态资源到处-->
< build>
< resources>
< resource>
< directory> src/main/java< /directory>
< includes>
< include> **/*.properties< /include>
< include> **/*.xml< /推荐阅读
- 面试官(怎么做JDK8的内存调优())
- Linux 内核 内存管理物理分配页 ⑧ ( __alloc_pages_slowpath 慢速路径调用函数源码分析 | 获取首选内存区域 | 异步回收内存页 | 最低水线也分配 | 直接分配 )
- 满屏的if-else,看我怎么消灭你!
- Linux 内核 内存管理物理分配页 ③ ( 物理页分配标志位分析 | ALLOC_WMARK_MIN | ALLOC_WMARK_MASK | ALLOC_HARDER )
- Linux 内核 内存管理物理分配页 ⑥ ( get_page_from_freelist 快速路径调用函数源码分析 | 检查内存区域水线 | 判定节点回收 | 判定回收距离 | 回收分配页 )
- Linux 内核 内存管理分区伙伴分配器 ⑤ ( 区域水线 | 区域水线数据结构 zone_watermarks 枚举 | 内存区域 zone 中的区域水线 watermark 成员 )
- Linux 内核 内存管理分区伙伴分配器 ⑥ ( zone 结构体中水线控制相关成员 | 在 Ubuntu 中查看内存区域水位线 )
- SpringBoot--JWT的后端搭建前后分离
- 从面试角度一文学完Kafka