博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置系列:ssm中applicationContext-mybatis.xml的简单配置
阅读量:5765 次
发布时间:2019-06-18

本文共 1419 字,大约阅读时间需要 4 分钟。

<?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:p="http://www.springframework.org/schema/p"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

        

        <!-- 定义Mybatis的SqlSessionFactory -->

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">

<!-- 定义数据源 -->

<property name="dataSource" ref="dataSource" />

<!-- 指定calsspath下mybatis全局配置文件 -->

<property name="configLocation" value="classpath:mybatis/mybatis-config.xml"></property>

<!-- 扫描mappers目录以及子目录下的所有xml文件 -->

<!--    <property name="mapperLocations" value="classpath:mybatis/mappers/**/*.xml" /> -->

  

   <!-- 别名扫描包 -->

   <property name="typeAliasesPackage" value="com.simple.sso.pojo"/>

</bean>

        

     <!-- 定义Mapper接口扫描器:让其自动生成接口的代理实现类 -->

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

     <property name="basePackage" value="com.simple.sso.mapper" />

</bean>

</beans>

        

本文转自 兴趣e族 51CTO博客,原文链接:http://blog.51cto.com/simplelife/1695782

转载地址:http://sabux.baihongyu.com/

你可能感兴趣的文章
【更新】Essential Studio for ASP.NET MVC更新至2018 v4(一)
查看>>
OSPF 01
查看>>
什么是40G QSFP+ AOC有源光缆,有何应用特点
查看>>
好程序员分享干货 弹性分布式数据集RDD
查看>>
Hadoop
查看>>
php调用接口及编写接口
查看>>
Oracle11g_自动内存管理
查看>>
AIX 磁盘限额的配置
查看>>
往数据库插入一个数据
查看>>
Installing CentOS 6 or RedHat EL 6 on a partition larger than 2.2T
查看>>
【Python】基于fabric模块批量远程主机操作
查看>>
查看nginx,apache,mysql,php编译参数
查看>>
VMware+双网卡设置
查看>>
监控io性能、free命令、ps命令、查看网络状态、Linux下抓包
查看>>
Apache CXF实现的SOAP形式的webservices
查看>>
网页资源下载 -- 水浒传全集
查看>>
VMware虚拟服务器磁盘扩容
查看>>
用Webmin轻松管理linux服务!
查看>>
磁盘和文件系统管理(一)
查看>>
详述UltraISO(软碟通)刻录Windows系统光盘的那些事
查看>>