SpringMVC-Mybatis整合

SpringMVC与Mybatis整合过程及部分配置


导包

关于导包,如果是Maven项目,直接在pom文件中配置,会自动在私服或者maven的中央仓库中下载。而这里采用是手动导入jar包的方式。

Spring相关的jar包

spring jar

mybatis相关的jar包

mybatis jar

其他jar包:驱动、连接池等

orther


导约束

导入约束这部分方法我在Struts2这篇文章中介绍过,方法是一样的,这里就不再赘述,用到相关的约束如下:

约束文件
1
2
3
4
5
6
7
8
spring-beans.xsd
spring-context.xsd
spring-aop.xsd
spring-tx.xsd
spring-mvc.xsd
mybatis-3-mapper.dtd
mybatis-3-config.dtd
...

配置applicationContext.xml

applicationContext.xml是Spring的核心配置文件,主要负责对象的管理、事务的管理,当然也包括配置数据库连接

applicationContext.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
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/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

<!-- 配置数据库连接资源文件的路径 -->
<context:property-placeholder location="classpath:db.properties" />
<!-- 配置数据库连接池 -->
<bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driverClass}"></property>
<property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
<property name="user" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<!-- 配置mybatis的sqlSessionFactory工厂 -->
<bean name="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注入连接池 -->
<property name="dataSource" ref="dataSource"></property>
<!-- 配置mybatis核心配置文件的位置 -->
<property name="configLocation" value="classpath:sqlMapConfig.xml"></property>
</bean>
<!-- 扫描注解 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 指定一个基本包,spring会自动扫描包下的所有mapper接口 -->
<property name="basePackage" value="com.my.springmvc.dao"></property>
</bean>
<!-- 配置注解事务 -->
<bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 启用注解事务 -->
<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>

配置db.properties

db.properties文件主要是配置数据库的连接信息,以mysql数据库为例:

db.properties
1
2
3
4
jdbc.driverClass=com.mysql.cj.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql://localhost:3306/springmvc?useSSL=false&serverTimezone=GMT%2B8
jdbc.user=mackvord
jdbc.password=12345678

配置springmvc.xml

springmvc.xml文件是SpringMVC框架表现层的核心配置文件,主要进行映射处理器、适配处理器、视图解析器等组件的相关配置。

springmvc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
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">

<!-- 开启注解扫描 -->
<context:component-scan base-package="com.my" />
<!-- 配置映射处理器 -->
<!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" /> -->
<!-- 配置适配处理器 -->
<!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter" /> -->

<!-- 开启注解驱动,配置了注解驱动,就无需再手动配置新版映射处理器和适配处理器,如果想要配置前后缀,还需要手动配置视图解析器 -->
<mvc:annotation-driven />

<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 配置前缀 -->
<property name="prefix" value="/WEB-INF/jsp/"></property>
<!-- 配置后缀 -->
<property name="suffix" value=".jsp"></property>
</bean>
</beans>

配置web.xml

web.xml整个web项目的配置文件,在这个文件中需要配置Spring容器随项目的启动而创建,即配置Spring监听器,同时还要配置SpringMVC的前端控制器…

web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>SpringMVC-Mybatis</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- 配置Spring监听器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- 配置springmvc前端控制器 -->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<!-- 配置拦截的路径 -->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

配置SqlMapConfig.xml

SqlMapConfig.xmlmybatis的核心配置文件,下面是在此文件中配置别名:

SqlMapConfig.xml
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 设置别名 -->
<typeAliases>
<package name="com.my.springmvc.pojo"/>
</typeAliases>
</configuration>

如果您觉得我的文章对您有帮助,请随意赞赏,您的支持将鼓励我继续创作!
0%