首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Ibatis核心、照射 配置文件

2012-07-04 
Ibatis核心、映射 配置文件核心配置文件:----------------------?xml version1.0 encodingUTF-8 ?

Ibatis核心、映射 配置文件

核心配置文件:

----------------------

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE sqlMapConfig?????
????PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"?????
????"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>

??<!-- <properties resource="SqlMap.properties"/> -->
??<!-- Configure a built-in transaction manager.??If you're using an
???????app server, you probably want to use its transaction manager
???????and a managed datasource -->
??????
??<!--
??<transactionManager type="JDBC" commitRequired="false">
????<dataSource type="SIMPLE">
??????<property name="JDBC.Driver" value="${driver}"/>
??????<property name="JDBC.ConnectionURL" value="${url}"/>
??????<property name="JDBC.Username" value="${username}"/>
??????<property name="JDBC.Password" value="${password}"/>
????</dataSource>
??</transactionManager>
??-->
?
??<!-- List the SQL Map XML files. They can be loaded from the
???????classpath, as they are here (com.domain.data...) -->
??<sqlMap resource="com/ibatis/model/Account.xml"/>
??<!-- List more here...
??<sqlMap resource="com/mydomain/data/Order.xml"/>
??<sqlMap resource="com/mydomain/data/Documents.xml"/>
??-->

</sqlMapConfig>

----------------------

实体类的映射文件:

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE sqlMap?????
????PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"?????
????"http://ibatis.apache.org/dtd/sql-map-2.dtd">

<sqlMap namespace="Account">

??<!-- Use type aliases to avoid typing the full classname every time. -->
??<!--?<typeAlias alias="Account" type="com.ibatis.model.Account"/> -->

?

</sqlMap>

热点排行