`
Brooke
  • 浏览: 1182222 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

ibatis配置详解

阅读更多
[size=small][/size]ibatis配置主要由两种文件,
(一)有关项目的总体配置,如连接的数据源,连接池,缓存等的配置,也即sqlmapconfig.xml文件的配置。
(二)sqlmap.xml文件的配置,也即对象与表的操作映射的配置。
下面分两个部分进行记录
第一部分sqlmapconfig.xml
在这个文件中总共的结构如下:


﹤?xml version="1.0" encoding="utf-8"?﹥  

﹤!doctype sqlmapconfig public "-//ibatis.com//dtd sql map config 2.0//en" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"﹥  

﹤sqlmapconfig﹥  

﹤properties resource=""﹥在这里将项目(工程)的所有资源文件包含进来,将相对与src路径的资源文件的路径以及文件名包含进来  

﹤settings  cachemodelsenabled="true" 全局控制sqlmapclient的缓存  

enhancementenabled="true"全局控制运行时字节码增强,优化javabean的属性性能  

lazyloadingenabled="true" 延迟加载  

errortracingenabled="true"  

maxrequests="32" 同时执行sql语句的最大线程数,通常大小是maxtransactions的10倍,并且总是大于maxtransactions和maxsessions的总和。减小这个值能够提高性能。 

maxsessions="10"  

maxtransactions="5"  

usestatementnamespaces="false"  是否启动全局的sqlmap名字空间。如果启动则应用时,必须加上名字空间:queryforobject(sqlmap的名字空间.statementname)  
/﹥  

//这个节点是设置工程的总体性能,根据名称来设置  

﹤typealias alias="person" type="com.jdnis.ibatis.model.person" /﹥ 

---﹥这个节点是将长的路径名等用短的进行替代,也就是用上面的person来代表右边的person类  

﹤transactionmanager type="jdbc"﹥ type指定事务管理器:jdbc,jta,external,三者的区别后面再讲到  

﹤datasource type="simple"﹥ type值由:simple,dbcp,jndi三者的使用后面再讲  

﹤property name="jdbc.driver" value="com.mysql.jdbc.driver" /﹥  

﹤property name="jdbc.connectionurl" value="jdbc:mysql://localhost/person" /﹥  

﹤property name="jdbc.username" value="root" /﹥  

﹤property name="jdbc.password" value="root" /﹥  

﹤property name="pool.maximumactiveconnections" value="10" /﹥  

﹤property name="pool.maximumidleconnections" value="5" /﹥  

﹤property name="pool.maximumcheckouttime" value="120000" /﹥  

﹤property name="pool.timetowait" value="500" /﹥  

﹤property name="pool.pingquery" value="select 1 from sample" /﹥  

﹤property name="pool.pingenabled" value="false" /﹥  

﹤property name="pool.pingconnectionsolderthan" value="1" /﹥  

﹤property name="pool.pingconnectionsnotusedfor" value="1" /﹥  

﹤/datasource﹥  

﹤/transactionmanager﹥   
[/pre]
这个节点是来对ibatis配置数据源,数据库连接等等信息的。

﹤sqlmap resource="com/neusoft/ibatis/map/person.xml" /﹥
将系统中的对象与数据库表的映射文件都包含进来上面采用的时相对路径,当然也可以用绝对路径:﹤sqlmap url="file:///c:/config/person.xml"
﹤/sqlmapconfig﹥
第二部分:sqlmap.xml映射文件


﹤?xml version="1.0" encoding="utf-8"?﹥  

﹤!doctype sqlmap public "-//ibatis.com//dtd sql map 2.0//en" "http://www.ibatis.com/dtd/sql-map-2.dtd"﹥  

﹤sqlmap namespace="person"﹥  

﹤cachemodel id="personcache" type="lru"﹥  

﹤flushinterval hours="24"/﹥  

﹤property name="size" value="1000"/﹥  

﹤/cachemodel﹥  
  
  ﹤typealias alias="person" type="com.jdnis.ibatis.model.person" /﹥  
   
  ﹤parametermap id="personparam" class="person"﹥  
     ﹤parameter property="id"/﹥  
      ......  
  ﹤/parametermap﹥  

  ﹤resultmap id="personresult" class="person"﹥  
     ﹤result property="id" column="per_id"/﹥  
        ......  
  ﹤/resultmap﹥  

  ﹤statement id="insertperson" parameterclass="person"﹥  
    insert into persons values(#id#,#firstname#,#lastname#,#birthdate#,#weight#,#height#)  
  ﹤/statement﹥  
  其他﹤statement﹥,﹤insert﹥,﹤update﹥,﹤select﹥,﹤delete﹥,﹤procedure﹥  
﹤/sqlmap﹥ 
[/pre]
ibatis配置注解:
﹤1﹥statement
属性:id(名称),parameterclass(输入参数的类型),resultclass(输出参数的类型),parametermap(name of parametermap),resultmap(name of reaultmap),cachemodel(name of cachemodel),其中只有一个必选属性:id
statement 的体时sql语句,当sql有特殊字符时,将它放进cdata块中如:﹤![cdata[select * from person where per_d﹥#id#]]﹥
﹤2﹥自动生成主键
通过﹤insert﹥子元素﹤selectkey﹥来支持自动生成的键值,例如:
对于oracle


﹤insert id="insertperson-oracl" parameterclass="person"﹥  
  ﹤selectkey resultclass="int" keyproperty="id"﹥  
     select stockidsequence.nextval as id from dual  
  ﹤/selectkey﹥  
  insert into  
  person(per_id,per_first.....)  
  values(#id#,#firstname#....);  
﹤/insert﹥ 
[/pre]
对于sqlserver


﹤insert id="insertperson-sqlserver" parameterclass="person"﹥  
  insert into  
  person(per_first.....)  
  values(#firstname#....);  
  ﹤selectkey resultclass="int" keyproperty="id"﹥  
     select @@identity as id  
  ﹤/selectkey﹥  
﹤/insert﹥ 
[/pre]
﹤3﹥存储过程


﹤parametermap id="swapparameters" class="map"﹥  
  ﹤parameter property="email1" jdbctype="varchar" javatype="java.lang.string" model="inout"/﹥  
﹤parameter property="email12" jdbctype="varchar" javatype="java.lang.string" model="inout"/﹥  
﹤/parametermap﹥  
﹤procedure id="swapemailaddresses" parametermap="swapparameters"﹥  
   {call swap_email_addres(?,?)}  
﹤/procedure﹥ 
[/pre]
﹤4﹥parameterclass 输入参数的类类型
﹤5﹥resultclass 输出参数的类类型
﹤6﹥parametermap
用到预处理的preparedstatement,将要进行预处理的数据,先放到parametermap元素中,接着引用parametermap元素:例如:


﹤parametermap id="insert-person-param" class="person"﹥  
﹤parameter property="id"/﹥  
﹤parameter property="firstname"/﹥  
﹤parameter property="lastname"/﹥  
﹤parameter property="birthdate"/﹥  
﹤parameter property="weight"﹥  
﹤parameter property="height"/﹥  
﹤/parametermap﹥  
﹤statement id="insertperson" parametermap="insert-person-param"﹥  
insert into person values(?,?,?,?,?,?);  
﹤/statement﹥
[/pre]
﹤7﹥resultmap结果映射到预先定义的resultmap中


﹤resultmap id="get-person" resultclass="person"﹥  
﹤result property="id" column="per_id"/﹥  
﹤result property="firstname" column="per_first_name"/﹥  
......  
﹤/resultmap﹥  
﹤statement id="getperson" resulemap="get-person"﹥  
select * from person  
﹤statement﹥ 
[/pre]
﹤8﹥cachemodel定义查询缓存


﹤cachemodel id="person-cache" implementation="lru"﹥  
﹤flushinterval hours="24"﹥  
﹤flushonexecute statement="insertperson"/﹥  
﹤flushonexecute statement="updateperson"/﹥  
﹤flushonexecute statement="deleteperson"/﹥  
  ......    [color=indigo][/color]
﹤property name="size" value="1000"/﹥  
﹤/cachemodel﹥  
﹤statement id="getperson" parameterclass="int" cachemodel="person-cache"﹥  
﹤![cdata[select * from person where per_id=#id#]]﹥  
﹤/statement﹥
[/pre]
注解:每隔24小时,就会清除缓冲区,除非执行了insertperson,updateperson,deleteperson操作(立即清除缓冲区)
ibatis配置的基本相关就向你介绍到这里,希望对你有所帮助。
本贴来自天极网群乐社区--http://q.yesky.com/group/review-18217232.html

分享到:
评论

相关推荐

    ibatis 配置文件详解

    ### ibatis配置文件详解 #### 一、ibatis概述 ibatis,又称MyBatis,是一种优秀的持久层框架,它支持定制化SQL、存储过程以及高级映射。ibatis避免了几乎所有的JDBC代码和手动设置参数以及获取结果集。ibatis可以...

    ibatis相关配置

    ### Ibatis配置详解 1. **全局配置文件(ibatis-config.xml)** 全局配置文件是Ibatis系统的起点,它包含了数据源、事务管理器、插件、类型别名等整体设置。例如: ```xml <!DOCTYPE configuration PUBLIC "-/...

    log4j和ibatis配置文档

    《log4j与iBatis配置详解》 在软件开发中,日志管理和数据库操作是两个至关重要的环节。Log4j作为Java世界里最流行的日志框架之一,它提供了强大的日志记录功能,帮助开发者追踪应用程序运行过程中的信息、警告、...

    IBATIS 配置+简单案列

    **IBATIS 配置详解** IBATIS 是一款优秀的持久层框架,它为Java应用程序提供了灵活的数据库访问层。它的主要目标是简化数据库操作,将SQL与Java代码分离,从而实现更高效的数据库管理和维护。在本教程中,我们将...

    ibatis sqlmap配置详解

    SqlMap的配置是iBatis中应用的核心。这部分任务占据了iBatis开发的...Sql Map配置文件是iBatis配置的核心,从数据库连接到执行SQL时使用的sqlMap文件都是通过此文件中的配置提供给框架的,它通常命名为sqlMapConfig.xml

    ibatis配置文件、映射文件详解

    ### ibatis配置文件、映射文件详解 #### 1. SQL Map Config 文件详解 在ibatis框架中,`sqlMapConfig.xml`是一个非常重要的配置文件,它主要用于设置ibatis的全局配置信息,包括数据库连接信息、环境配置以及其它...

    ibatis基础知识详解

    **Ibatis基础知识详解** Ibatis,全称MyBatis,是一个优秀的开源持久层框架,它支持定制化SQL、存储过程以及高级映射。在Java应用中,Ibatis可以帮助开发者将数据库操作与业务逻辑分离,从而简化开发工作,提高代码...

    ibatis环境搭建教程

    #### 三、ibatis配置详解 在ibatis中,配置文件通常包括`sqlmap`、`datasource`、`settings`等元素,下面详细介绍这些配置项的作用: ##### 1. SQL Map配置 - ****:用于定义和引用属性值,可以在配置文件中使用...

    ibatis配置文件信息

    #### 二、ibatis配置文件详解 ibatis的配置文件主要包括三部分:`SqlMap.properties`、`SqlMapConfig.xml` 和 `Student.xml`。下面将分别对这三个文件进行详细介绍。 ##### 1. SqlMap.properties 文件 `SqlMap....

    Spring+iBatis整合详解

    ### Spring与iBatis整合详解 #### 一、前言 在Java企业级应用开发中,Spring框架以其强大的依赖注入(DI)和面向切面编程(AOP)能力深受开发者喜爱,而iBatis(现更名为MyBatis)作为一款优秀的持久层框架,通过...

    ibatis_SqlMapConfig配置详解

    SqlMapConfig.xml是iBATIS的核心配置文件,它定义了全局的设置和数据源信息,使得整个系统能够正确地运行和管理SQL映射。下面我们将详细解析这个配置文件的各个部分。 首先,配置文件的开头是XML声明和DTD定义,...

    ibatis开发

    #### 三、ibatis配置详解 ibatis的配置主要通过XML文件完成,其中最重要的文件是`sqlMapConfig.xml`,它包含了数据源、事务管理器等全局配置信息。此外,每个具体的数据库操作都通过单独的Mapper XML文件定义。 - *...

    struts+spring+ibaits配置详解

    ### Struts + Spring + iBatis 配置详解 #### 一、概述 在实际的软件开发项目中,为了提高代码的复用性与维护性,通常会采用一系列的框架来构建应用程序。其中,Struts、Spring 和 iBatis 是三个非常流行且互补的...

    Spring 3.0 整合Ibatis 3

    iBatis 配置详解 iBatis 的配置需要特别注意,因为这关系到 SQL 映射文件的加载以及后续的数据操作。具体的配置内容会在后续的 Java 文件中体现。 #### 五、总结 通过以上步骤,我们可以有效地将 Spring 3.0 与 ...

    ibatis 开发指南(pdf)

    #### 三、iBatis配置详解 - **Settings节点**:定义全局设置,如是否启用缓存、是否使用字节码增强机制、是否启用延迟加载等。 - **transactionManager节点**:定义iBatis的事务管理器类型,可以选择JDBC、JTA或...

    ibatis 开发指南

    #### 四、ibatis配置详解 1. **配置文件**:ibatis使用XML配置文件来管理各种配置信息,包括数据库连接参数、SQL映射规则等。 - `<sqlMapConfig>`元素:定义数据库连接和其他全局设置。 - `<transactionManager>`...

Global site tag (gtag.js) - Google Analytics