Mybatis导入原生配置文件

Posted 宇的季节

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis导入原生配置文件相关的知识,希望对你有一定的参考价值。

Spring-Mybatis中导入Mybatis原生配置文件

sqlSessionFactory Bean中设置设置configLocation属性

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

mybatis.xml中添加配置

<?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>  

   <settings>  

     <setting name="mapUnderscoreToCamelCase" value="true"/>  

   </settings>  

</configuration> 

Mybatisproperties文件的引入

使用properties标签,如下,resource是类路径,url是网络路径或磁盘路径资源

<configuration>

<properties resource=”dbconfig.properties” ></properties>

。。。。

以上是关于Mybatis导入原生配置文件的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis主配置文件常见使用讲解

Mybatis学习

mybatis入门 配置文件解释 及测试

搭建MyBatis开发环境步骤

mybatis框架的简单使用

MyBatis和Spring整合