请老师解释一下Spring整合Mybatis的相关配置的含义
1.本节视频中的Spring.xml文件
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<!-- Spring整合Mybatis -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/selection_course?useSSL=false&serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<!-- 指定别名,指定一个包,该包中所有的类在映射文件中使用时可以不加包名直接使用类名 -->
<property name="typeAliasesPackage" value="com.imooc.sm.entity"/>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.imooc.sm.dao"/>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
<!-- 声明式事务 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true"/>
<tx:method name="find*" read-only="true"/>
<tx:method name="search*" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="txPointcut" expression="execution(* com.imooc.sm.service.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
</aop:config>
<!-- 全局扫描 -->
<context:component-scan base-package="com.imooc.sm"/>
<aop:aspectj-autoproxy/>
</beans>
2.之前学习Mybatis时的一个Mybatis配置文件
<?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>
<!-- properties配置,用户加载外部的properties配置文件 -->
<properties resource="db.properties"></properties>
<!-- environments主要用于进行数据源的配置 可以配置多个数据源,通过default属性来指定当前项目运行过程中使用的是哪个数据源 -->
<environments default="development">
<!-- environment用于配置一个具体的独立的数据源 id属性用于给当前数据源定义一个名称,方便我们的项目指定 -->
<environment id="development">
<!-- transactionManager用于配置事务管理,默认情况下使用的是JDBC事务管理 -->
<transactionManager type="JDBC" />
<!-- dataSource用于配置具体数据源的链接信息 type属性用于指定是否使用连接池 POOLED表示使用连接池 -->
<dataSource type="POOLED">
<property name="driver" value="${driver}" />
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
</dataSource>
</environment>
</environments>
<!-- mappers主要用于配置我们外部的映射配置文件 在主配置文件中需要引入加载映射配置文件 -->
<mappers>
<!-- 主要配置引入某一个具体的映射文件,resource进行路径方式的引入 -->
<mapper resource="mapper/usersMapper.xml" />
</mappers>
</configuration>
希望老师能对照着这两个配置文件讲讲Spring整合Mybatis的配置和Mybatis的单独的配置文件的代码的一一对应关系。我现在只能看懂下图两个红框内的对应关系,其他一点都看不懂,希望老师能详细解释一下。
正在回答 回答被采纳积分+1
举个例子吧,就拿配置sqlsession来说,在sping的配置文件中,我们通过下图的配置文件即可配置SqlSessionFactory,
而在mybatis中,当配置mybatis-config.xm文件之后,就需要使用一下代码来创建SqlSessionFactory,所以有些是不一样的,我觉得你不用纠结这个方面,有很多东西是框架底层去完成的。
InputStream resourceAsStream = Resources.getResourceAsStream("mybatis-config.xml"); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsStream);配置mybaits中的事务是按下图进行配置的,
spring中配置是按下图这样配置的,
- 参与学习 人
- 提交作业 205 份
- 解答问题 4317 个
Java中非常实用的SSM整合开发内容,从Spring开始,到MyBaits的进阶内容,再到SpringMVC的应用,最后是SSM整合开发案例,逐步深入,助你成长为一名Java工程师!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星