Java+Spring+MySql环境中安装和配置MyBatis的教程
1.mybatis简介与配置mybatis+spring+mysql
1.1mybatis简介
mybatis 是一个可以自定义sql、存储过程和高级映射的持久层框架。mybatis 摒除了大部分的jdbc代码、手工设置参数和结果集重获。mybatis 只使用简单的xml 和注解来配置和映射基本数据类型、map 接口和pojo 到数据库记录。相对hibernate和apache ojb等“一站式”orm解决方案而言,mybatis 是一种“半自动化”的orm实现。
需要使用的jar包:mybatis-3.0.2.jar(mybatis核心包)。mybatis-spring-1.0.0.jar(与spring结合包)。
下载地址:
http://ibatis.apache.org/tools/ibator
http://code.google.com/p/mybatis/
1.2mybatis+spring+mysql简单配置
1.2.1搭建spring环境
(1)建立maven的web项目;
(2)加入spring框架、配置文件;
(3)在pom.xml中加入所需要的jar包(spring框架的、mybatis、mybatis-spring、junit等);
(4)更改web.xml和spring的配置文件;
(5)添加一个jsp页面和对应的controller;
(6)测试。
可参照:http://limingnihao.iteye.com/blog/830409。使用eclipse的maven构建springmvc项目
1.2.2建立mysql数据库
建立一个学生选课管理数据库。
表:学生表、班级表、教师表、课程表、学生选课表。
逻辑关系:每个学生有一个班级;每个班级对应一个班主任教师;每个教师只能当一个班的班主任;
使用下面的sql进行建数据库,先建立学生表,插入数据(2条以上)。
更多sql请下载项目源文件,在resource/sql中。
/* 建立数据库 */ create database student_manager; use student_manager; /***** 建立student表 *****/ create table student_tbl ( student_id varchar(255) primary key, student_name varchar(10) not null, student_sex varchar(10), student_birthday date, class_id varchar(255) ); /*插入学生数据*/ insert into student_tbl (student_id, student_name, student_sex, student_birthday, class_id) values (123456, '某某某', '女', '1980-08-01', 121546 )
创建连接mysql使用的配置文件mysql.properties。
jdbc.driverclassname=com.mysql.jdbc.driver jdbc.url=jdbc:mysql://localhost:3306/student_manager?user=root&password=limingnihao&useunicode=true&characterencoding=utf-8
1.2.3搭建mybatis环境
顺序随便,现在的顺序是因为可以尽量的少的修改写好的文件。
1.2.3.1创建实体类: studententity
public class studententity implements serializable { private static final long serialversionuid = 3096154202413606831l; private classentity classentity; private date studentbirthday; private string studentid; private string studentname; private string studentsex; public classentity getclassentity() { return classentity; } public date getstudentbirthday() { return studentbirthday; } public string getstudentid() { return studentid; } public string getstudentname() { return studentname; } public string getstudentsex() { return studentsex; } public void setclassentity(classentity classentity) { this.classentity = classentity; } public void setstudentbirthday(date studentbirthday) { this.studentbirthday = studentbirthday; } public void setstudentid(string studentid) { this.studentid = studentid; } public void setstudentname(string studentname) { this.studentname = studentname; } public void setstudentsex(string studentsex) { this.studentsex = studentsex; } }
1.2.3.2创建数据访问接口
student类对应的dao接口:studentmapper。
public interface studentmapper { public studententity getstudent(string studentid); public studententity getstudentandclass(string studentid); public list<studententity> getstudentall(); public void insertstudent(studententity entity); public void deletestudent(studententity entity); public void updatestudent(studententity entity); }
1.2.3.3创建sql映射语句文件
student类的sql语句文件studentmapper.xml
resultmap标签:表字段与属性的映射。
select标签:查询sql。
<?xml version="1.0" encoding="utf-8" ?> <!doctype mapper public "-//mybatis.org//dtd mapper 3.0//en" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.manager.data.studentmapper"> <resultmap type="studententity" id="studentresultmap"> <id property="studentid" column="student_id"/> <result property="studentname" column="student_name"/> <result property="studentsex" column="student_sex"/> <result property="studentbirthday" column="student_birthday"/> </resultmap> <!-- 查询学生,根据id --> <select id="getstudent" parametertype="string" resulttype="studententity" resultmap="studentresultmap"> <![cdata[ select * from student_tbl st where st.student_id = #{studentid} ]]> </select> <!-- 查询学生列表 --> <select id="getstudentall" resulttype="com.manager.data.model.studententity" resultmap="studentresultmap"> <![cdata[ select * from student_tbl ]]> </select> </mapper>
1.2.3.4创建mybatis的mapper配置文件
在src/main/resource中创建mybatis配置文件:mybatis-config.xml。
typealiases标签:给类起一个别名。com.manager.data.model.studententity类,可以使用studententity代替。
mappers标签:加载mybatis中实体类的sql映射语句文件。
<?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> <typealias alias="studententity" type="com.manager.data.model.studententity"/> </typealiases> <mappers> <mapper resource="com/manager/data/maps/studentmapper.xml" /> </mappers> </configuration>
1.2.3.5修改spring 的配置文件
主要是添加sqlsession的制作工厂类的bean:sqlsessionfactorybean,(在mybatis.spring包中)。需要指定配置文件位置和datasource。
和数据访问接口对应的实现bean。通过mapperfactorybean创建出来。需要执行接口类全称和sqlsession工厂bean的引用。
<!-- 导入属性配置文件 --> <context:property-placeholder location="classpath:mysql.properties" /> <bean id="datasource" class="org.springframework.jdbc.datasource.drivermanagerdatasource"> <property name="driverclassname" value="${jdbc.driverclassname}" /> <property name="url" value="${jdbc.url}" /> </bean> <bean id="transactionmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager"> <property name="datasource" ref="datasource" /> </bean> <bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean"> <property name="configlocation" value="classpath:mybatis-config.xml" /> <property name="datasource" ref="datasource" /> </bean> <!— mapper bean --> <bean id="studentmapper" class="org.mybatis.spring.mapperfactorybean"> <property name="mapperinterface" value="com.manager.data.studentmapper" /> <property name="sqlsessionfactory" ref="sqlsessionfactory" /> </bean>
也可以不定义mapper的bean,使用注解:
将studentmapper加入注解
@repository @transactional public interface studentmapper { }
对应的需要在dispatcher-servlet.xml中加入扫描:
<bean class="org.mybatis.spring.mapper.mapperscannerconfigurer"> <property name="annotationclass" value="org.springframework.stereotype.repository"/> <property name="basepackage" value="com.liming.manager"/> <property name="sqlsessionfactory" ref="sqlsessionfactory"/> </bean>
1.2.4测试studentmapper
使用springmvc测试,创建一个testcontroller,配置tomcat,访问index.do页面进行测试:
@controller public class testcontroller { @autowired private studentmapper studentmapper; @requestmapping(value = "index.do") public void indexpage() { studententity entity = studentmapper.getstudent("10000013"); system.out.println("name:" + entity.getstudentname()); } }
使用junit测试:
@runwith(value = springjunit4classrunner.class) @contextconfiguration(value = "test-servlet.xml") public class studentmappertest { @autowired private classmapper classmapper; @autowired private studentmapper studentmapper; @transactional public void getstudenttest(){ studententity entity = studentmapper.getstudent("10000013"); system.out.println("" + entity.getstudentid() + entity.getstudentname()); list<studententity> studentlist = studentmapper.getstudentall(); for( studententity entitytemp : studentlist){ system.out.println(entitytemp.getstudentname()); } } }
2.mybatis的主配置文件
在定义sqlsessionfactory时需要指定mybatis主配置文件:
<bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean"> <property name="configlocation" value="classpath:mybatis-config.xml" /> <property name="datasource" ref="datasource" /> </bean>
mybatis配置文件中大标签configuration下子标签包括:
configuration |--- properties |--- settings |--- typealiases |--- typehandlers |--- objectfactory |--- plugins |--- environments |--- |--- environment |--- |--- |--- transactionmanager |--- |--- |__ datasource |__ mappers
2.1 properties属性
properties和java的.properties的配置文件有关。配置properties的resource指定.properties的路径,然后再在properties标签下配置property的name和value,则可以替换.properties文件中相应属性值。
<!-- 属性替换 --> <properties resource="mysql.properties"> <property name="jdbc.driverclassname" value="com.mysql.jdbc.driver"/> <property name="jdbc.url" value="jdbc:mysql://localhost:3306/student_manager"/> <property name="username" value="root"/> <property name="password" value="limingnihao"/> </properties>
2.2 settings设置
这是mybatis 修改操作运行过程细节的重要的步骤。下方这个表格描述了这些设置项、含义和默认值。
设置项 |
描述 |
允许值 |
默认值 |
cacheenabled |
对在此配置文件下的所有cache 进行全局性开/关设置。 |
true | false |
true |
lazyloadingenabled |
全局性设置懒加载。如果设为‘false',则所有相关联的都会被初始化加载。 |
true | false |
true |
aggressivelazyloading |
当设置为‘true'的时候,懒加载的对象可能被任何懒属性全部加载。否则,每个属性都按需加载。 |
true | false |
true |
multipleresultsetsenabled |
允许和不允许单条语句返回多个数据集(取决于驱动需求) |
true | false |
true |
usecolumnlabel |
使用列标签代替列名称。不同的驱动器有不同的作法。参考一下驱动器文档,或者用这两个不同的选项进行测试一下。 |
true | false |
true |
usegeneratedkeys |
允许jdbc 生成主键。需要驱动器支持。如果设为了true,这个设置将强制使用被生成的主键,有一些驱动器不兼容不过仍然可以执行。 |
true | false |
false |
automappingbehavior |
指定mybatis 是否并且如何来自动映射数据表字段与对象的属性。partial将只自动映射简单的,没有嵌套的结果。full 将自动映射所有复杂的结果。 |
none, partial, full |
partial |
defaultexecutortype |
配置和设定执行器,simple 执行器执行其它语句。reuse 执行器可能重复使用prepared statements 语句,batch执行器可以重复执行语句和批量更新。 |
simple reuse batch |
simple |
defaultstatementtimeout |
设置一个时限,以决定让驱动器等待数据库回应的多长时间为超时 |
正整数 |
not set (null) |
例如:
<settings> <setting name="cacheenabled" value="true" /> <setting name="lazyloadingenabled" value="true" /> <setting name="multipleresultsetsenabled" value="true" /> <setting name="usecolumnlabel" value="true" /> <setting name="usegeneratedkeys" value="false" /> <setting name="enhancementenabled" value="false" /> <setting name="defaultexecutortype" value="simple" /> </settings>
2.3 typealiases类型别名
类型别名是java 类型的简称。
它仅仅只是关联到xml 配置,简写冗长的java 类名。例如:
<typealiases> <typealias alias="userentity" type="com.manager.data.model.userentity" /> <typealias alias="studententity" type="com.manager.data.model.studententity" /> <typealias alias="classentity" type="com.manager.data.model.classentity" /> </typealiases>
使用这个配置,“studententity”就能在任何地方代替“com.manager.data.model.studententity”被使用。
对于普通的java类型,有许多内建的类型别名。它们都是大小写不敏感的,由于重载的名字,要注意原生类型的特殊处理。
别名 |
映射的类型 |
_byte |
byte |
_long |
long |
_short |
short |
_int |
int |
_integer |
int |
_double |
double |
_float |
float |
_boolean |
boolean |
string |
string |
byte |
byte |
long |
long |
short |
short |
int |
integer |
integer |
integer |
double |
double |
float |
float |
boolean |
boolean |
date |
date |
decimal |
bigdecimal |
bigdecimal |
bigdecimal |
object |
object |
map |
map |
hashmap |
hashmap |
list |
list |
arraylist |
arraylist |
collection |
collection |
iterator |
iterator |
2.4 typehandlers类型句柄
无论是mybatis在预处理语句中设置一个参数,还是从结果集中取出一个值时,类型处理器被用来将获取的值以合适的方式转换成java类型。下面这个表格描述了默认的类型处理器。
类型处理器 |
java类型 |
jdbc类型 |
booleantypehandler |
boolean,boolean |
任何兼容的布尔值 |
bytetypehandler |
byte,byte |
任何兼容的数字或字节类型 |
shorttypehandler |
short,short |
任何兼容的数字或短整型 |
integertypehandler |
integer,int |
任何兼容的数字和整型 |
longtypehandler |
long,long |
任何兼容的数字或长整型 |
floattypehandler |
float,float |
任何兼容的数字或单精度浮点型 |
doubletypehandler |
double,double |
任何兼容的数字或双精度浮点型 |
bigdecimaltypehandler |
bigdecimal |
任何兼容的数字或十进制小数类型 |
stringtypehandler |
string |
char和varchar类型 |
clobtypehandler |
string |
clob和longvarchar类型 |
nstringtypehandler |
string |
nvarchar和nchar类型 |
nclobtypehandler |
string |
nclob类型 |
bytearraytypehandler |
byte[] |
任何兼容的字节流类型 |
blobtypehandler |
byte[] |
blob和longvarbinary类型 |
datetypehandler |
date(java.util) |
timestamp类型 |
dateonlytypehandler |
date(java.util) |
date类型 |
timeonlytypehandler |
date(java.util) |
time类型 |
sqltimestamptypehandler |
timestamp(java.sql) |
timestamp类型 |
sqldatetypehandler |
date(java.sql) |
date类型 |
sqltimetypehandler |
time(java.sql) |
time类型 |
objecttypehandler |
any |
其他或未指定类型 |
enumtypehandler |
enumeration类型 |
varchar-任何兼容的字符串类型,作为代码存储(而不是索引)。 |
你可以重写类型处理器或创建你自己的类型处理器来处理不支持的或非标准的类型。要这样做的话,简单实现typehandler接口(org.mybatis.type),然后映射新的类型处理器类到java类型,还有可选的一个jdbc类型。然后再typehandlers中添加这个类型处理器。
新定义的类型处理器将会覆盖已经存在的处理java的string类型属性和varchar参数及结果的类型处理器。要注意mybatis不会审视数据库元信息来决定使用哪种类型,所以你必须在参数和结果映射中指定那是varchar类型的字段,来绑定到正确的类型处理器上。这是因为mybatis直到语句被执行都不知道数据类型的这个现实导致的。
public class limingstringtypehandler implements typehandler { @override public void setparameter(preparedstatement ps, int i, object parameter, jdbctype jdbctype) throws sqlexception { system.out.println("setparameter - parameter: " + ((string) parameter) + ", jdbctype: " + jdbctype.type_code); ps.setstring(i, ((string) parameter)); } @override public object getresult(resultset rs, string columnname) throws sqlexception { system.out.println("getresult - columnname: " + columnname); return rs.getstring(columnname); } @override public object getresult(callablestatement cs, int columnindex) throws sqlexception { system.out.println("getresult - columnindex: " + columnindex); return cs.getstring(columnindex); } }
在配置文件的typehandlers中添加typehandler标签。
<typehandlers> <typehandler javatype="string" jdbctype="varchar" handler="liming.student.manager.type.limingstringtypehandler"/> </typehandlers>
2.5 objectfactory对象工厂
每次mybatis 为结果对象创建一个新实例,都会用到objectfactory。默认的objectfactory 与使用目标类的构造函数创建一个实例毫无区别,如果有已经映射的参数,那也可能使用带参数的构造函数。
如果你重写objectfactory 的默认操作,你可以通过继承org.apache.ibatis.reflection.factory.defaultobjectfactory创建一下你自己的。
objectfactory接口很简单。它包含两个创建用的方法,一个是处理默认构造方法的,另外一个是处理带参数构造方法的。最终,setproperties方法可以被用来配置objectfactory。在初始化你的objectfactory实例后,objectfactory元素体中定义的属性会被传递给setproperties方法。
public class limingobjectfactory extends defaultobjectfactory { private static final long serialversionuid = -399284318168302833l; @override public object create(class type) { return super.create(type); } @override public object create(class type, list<class> constructorargtypes, list<object> constructorargs) { system.out.println("create - type: " + type.tostring()); return super.create(type, constructorargtypes, constructorargs); } @override public void setproperties(properties properties) { system.out.println("setproperties - properties: " + properties.tostring() + ", someproperty: " + properties.getproperty("someproperty")); super.setproperties(properties); } }
配置文件中添加objectfactory标签
<objectfactory type="liming.student.manager.configuration.limingobjectfactory"> <property name="someproperty" value="100"/> </objectfactory>
2.6 plugins插件
mybatis允许你在某一点拦截已映射语句执行的调用。默认情况下,mybatis允许使用插件来拦截方法调用:
- executor(update, query, flushstatements, commit, rollback, gettransaction, close, isclosed)
- parameterhandler(getparameterobject, setparameters)
- resultsethandler(handleresultsets, handleoutputparameters)
- statementhandler(prepare, parameterize, batch, update, query)
这些类中方法的详情可以通过查看每个方法的签名来发现,而且它们的源代码在mybatis的发行包中有。你应该理解你覆盖方法的行为,假设你所做的要比监视调用要多。如果你尝试修改或覆盖一个给定的方法,你可能会打破mybatis的核心。这是低层次的类和方法,要谨慎使用插件。
使用插件是它们提供的非常简单的力量。简单实现拦截器接口,要确定你想拦截的指定签名。
2.7 environments环境
mybatis 可以配置多个环境。这可以帮助你sql 映射对应多种数据库等。
2.8 mappers映射器
这里是告诉mybatis 去哪寻找映射sql 的语句。可以使用类路径中的资源引用,或者使用字符,输入确切的url 引用。
例如:
<mappers> <mapper resource="com/manager/data/maps/usermapper.xml" /> <mapper resource="com/manager/data/maps/studentmapper.xml" /> <mapper resource="com/manager/data/maps/classmapper.xml" /> </mappers>
推荐阅读
-
Java+Spring+MySql环境中安装和配置MyBatis的教程
-
Java+Spring+MySql环境中安装和配置MyBatis的教程
-
YII中Ueditor富文本编辑器文件和图片上传的配置图文教程
-
Java下载安装和环境变量配置图文教程
-
在win下打造linux环境: cygwin的安装和简单配置 LinuxSSHvimGCCBash
-
Android开发环境安装和配置图文教程
-
Android Studio中配置OpenCV库开发环境的教程
-
安装Python和pygame及相应的环境变量配置(图文教程)
-
Android Studio中配置OpenCV库开发环境的教程
-
安装Python和pygame及相应的环境变量配置(图文教程)