- 浏览: 39028 次
- 性别:
- 来自: 呼和浩特
文章分类
最新评论
-
pch272215690:
http://blog.csdn.net/aloie/arch ...
iBATIS多条件查询 -
fishinsky:
id或name其中有一为空的情况呢?
iBATIS多条件查询 -
zhou363667565:
谢谢..刚好适合我这种新手 ...学习了..
iBATIS多条件查询 -
film:
仔细看看
Struts2配置中出现的问题
/*==============================================================*/ /* Table: role */ /*==============================================================*/ create table role ( id bigint not null auto_increment, rolename varchar(24), descp varchar(240), primary key (id) ); alter table role comment '角色'; /*==============================================================*/ /* Table: tlink */ /*==============================================================*/ create table tlink ( userId bigint not null, roleId bigint not null ); alter table tlink comment '连接表'; /*==============================================================*/ /* Table: user */ /*==============================================================*/ create table user ( id bigint not null auto_increment, username varchar(24), remark varchar(240), primary key (id) ); alter table user comment '用户'; alter table tlink add constraint FK_r foreign key (roleId) references role (id) on delete restrict on update restrict; alter table tlink add constraint FK_u foreign key (userId) references user (id) on delete restrict on update restrict;
/** * Created by IntelliJ IDEA.<br> * <b>User</b>: leizhimin<br> * <b>Date</b>: 2008-6-16 0:12:13<br> * <b>Note</b>: 用户角色多对多模型:角色 */ public class User { private Long id; private String username; private String remark; private List<Role> roleList = new ArrayList<Role>(); public String toString() { return "User{" + "id=" + id + ", username='" + username + '\'' + ", remark='" + remark + '\'' + ", roleList='" + roleList.size() + '\'' + '}'; } public String out() { StringBuffer sb = new StringBuffer(); sb.append("User{" + "id=" + id + ", username='" + username + '\'' + ", remark='" + remark + '\'' + ", roleList='" + roleList.size() + '\''); for (Role role : roleList) { sb.append("\n\t").append(role.toString()); } return sb.toString(); }
public class Role { private Long id; private String rolename; private String descp; private List<User> userList= new ArrayList<User>(); public String toString() { return "Role{" + "id=" + id + ", rolename='" + rolename + '\'' + ", descp='" + descp + '\'' + ", userList=" + userList.size() + '}'; } public String out(){ StringBuffer sb= new StringBuffer(); if(userList.size()>0){ sb.append("Role{" + "id=" + id + ", rolename='" + rolename + '\'' + ", descp='" + descp + '\'' + ", userList=" + userList.size()); for(User u: userList){ sb.append("\n\t").append(u.toString()); } sb.append("\n}"); } return sb.toString(); }
/** * Created by IntelliJ IDEA.<br> * <b>User</b>: leizhimin<br> * <b>Date</b>: 2008-6-16 0:17:15<br> * <b>Note</b>: 用户角色多对多模型:连接表 */ public class Tlink { private Long id; private Long userId; private Long roleId;
<?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="user"> <typeAlias alias="user" type="com.lavasoft.ssi.domain.User"/> <resultMap id="result_basc" class="user"> <result property="id" column="id"/> <result property="username" column="username"/> <result property="remark" column="remark"/> </resultMap> <resultMap id="result" class="user" extends="result_basc"> <result property="roleList" column="id" select="role.getByUserId"/> </resultMap> <insert id="insert" parameterClass="user"> insert into user(username,remark) values(#username#,#remark#) <selectKey keyProperty="id" resultClass="long"> select LAST_INSERT_ID() </selectKey> </insert> <select id="getById" parameterClass="long" resultMap="result_basc"> select * from user where id = #value# </select> <select id="getWithCashWithRoleList" parameterClass="long" resultMap="result"> select * from user where id = #value# </select> <select id="getByRoleId" parameterClass="long" resultMap="result_basc"> select u.* from user u where u.id in (select userId from tlink where roleId=#value#) </select> </sqlMap>
<?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="role"> <typeAlias alias="role" type="com.lavasoft.ssi.domain.Role"/> <resultMap id="result_basc" class="role"> <result property="id" column="id"/> <result property="rolename" column="rolename"/> <result property="descp" column="descp"/> </resultMap> <resultMap id="result" class="role" extends="result_basc"> <result property="userList" column="id" select="user.getByRoleId"/> </resultMap> <insert id="insert" parameterClass="role"> insert into role(rolename,descp) values(#rolename#,#descp#) <selectKey keyProperty="id" resultClass="long"> select LAST_INSERT_ID() </selectKey> </insert> <select id="getById" parameterClass="long" resultMap="result_basc"> select * from role where id = #value# </select> <select id="getRoleByIdWithCashUser" parameterClass="long" resultMap="result"> select * from role where id = #value# </select> <!--为多对多配置--> <select id="getByUserId" parameterClass="long" resultClass="role" resultMap="result_basc"> select r.* from role r where r.id in (select roleId from tlink where userId=#value#) </select> </sqlMap>
<?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="tlink"> <typeAlias alias="tlink" type="com.lavasoft.ssi.domain.Tlink"/> <resultMap id="result" class="tlink"> <result property="id" column="id"/> <result property="userId" column="userId"/> <result property="roleId" column="roleId"/> </resultMap> <insert id="insert" parameterClass="tlink"> insert into tlink(userId,roleId) values(#userId#,#roleId#) <selectKey keyProperty="id" resultClass="long"> select LAST_INSERT_ID() </selectKey> </insert> <select id="getByUserId" parameterClass="long" resultMap="result"> select * from tlink where userId = #value# </select> <select id="getByRoleId" parameterClass="long" resultMap="result"> select * from tlink where roleId = #value# </select> <delete id="delete" parameterClass="tlink"> delete from tlink where userId = #userId# and roleId = #roleId# </delete> </sqlMap>
public interface UserDAO { public Long insert(User user); public Object getById(Long id); public Object getWithCashById(Long id); public User getWithCashWithRoleList(Long id); }
public interface RoleDAO { public Long insert(Role role); public Role getById(Long id); public Role getRoleByIdWithCashUser(Long id); public List<Role> getByUserId(Long userId); }
public interface TlinkDAO { public void insert(Long userId,Long roleId); public int delete(Long userId,Long roleId); public int update(Long userId,Long roleId); }
public class UserDAOImpl extends SqlMapClientDaoSupport implements UserDAO { public Long insert(User user) { return (Long) getSqlMapClientTemplate().insert("user.insert",user); } public Object getById(Long id) { return getSqlMapClientTemplate().queryForList("user.getById",id); } public Object getWithCashById(Long id) { return getSqlMapClientTemplate().queryForList("user.getWithCashById",id); } public User getWithCashWithRoleList(Long userId) { return (User) getSqlMapClientTemplate().queryForObject("user.getWithCashWithRoleList",userId); } }
public class RoleDAOImpl extends SqlMapClientDaoSupport implements RoleDAO { public Long insert(Role role) { return (Long) getSqlMapClientTemplate().insert("role.insert",role); } public Role getById(Long id) { return (Role) getSqlMapClientTemplate().queryForObject("role.getById",id); } public Role getRoleByIdWithCashUser(Long id) { return (Role) getSqlMapClientTemplate().queryForObject("role.getRoleByIdWithCashUser",id); } public List<Role> getByUserId(Long userId) { return getSqlMapClientTemplate().queryForList("role.getByUserId",userId); } }
public class TlinkDAOImpl extends SqlMapClientDaoSupport implements TlinkDAO { public void insert(Long userId, Long roleId) { Tlink tlink = new Tlink(userId, roleId); getSqlMapClientTemplate().insert("tlink.insert",tlink); } public int delete(Long userId, Long roleId) { Tlink tlink = new Tlink(userId, roleId); return getSqlMapClientTemplate().delete("tlink.delete",tlink); } public int update(Long userId, Long roleId) { return 0; } }
发表评论
-
checkboxlist标签的使用
2010-07-06 20:15 890<td width="30px" h ... -
通过Struts2的action校验后跳转页面样例
2010-05-04 22:53 1461login.jsp通过Struts2的action校验后跳转到 ... -
Struts2配置中出现的问题
2010-05-04 22:40 740是用Struts2(struts2-core-2.1. ... -
JSP访问Spring中的bean
2010-02-20 00:26 1388<%-- Document : comm ... -
iBATIS 多对多
2010-02-16 00:57 1088<?xml version="1.0" ... -
iBATIS多条件查询
2010-02-16 00:16 25421、在java代码中使用字符串拼接映射文件中这样写: < ... -
set、List、map之比较
2009-03-14 11:20 1471List接口对Collection进行 ... -
Hibernate 多对多例
2009-03-15 15:49 699create table tgroup ( group_ ... -
hibernate多对多配置实例
2009-03-15 16:19 12981.环境,student对lesson ... -
hibernate基础问题整理
2009-03-16 21:39 7781 inverse和cascade的区别? ... -
正确理解Hibernate的inverse(待整理)
2009-04-13 09:09 0在hibernate中是通过inverse的设置来决定是有谁来 ...
相关推荐
包括了几部分: ...7.iBatis2学习笔记:多对多映射(双向) .doc 8.iBatis2学习笔记:总结与思考.doc 9.iBatis2实体状态图解.doc 10.iBatis insert操作陷阱.doc 每章都有小例子。 呵呵,希望有所帮助!
本文将深入探讨如何在iBATIS中实现一对多和多对多的关系映射,并提供相关的源码分析和工具使用技巧。 **一对多关系映射** 在数据库设计中,一对多关系是指一个父记录可以与多个子记录关联,例如,一个用户可以有多...
文件名如 "iBatis2学习笔记:多对多映射(双向).htm" 暗示了文档可能深入讲解了如何配置和使用双向多对多映射,而 "iBatis2学习笔记:SqlMap的配置总结(18条).htm" 可能提供了关于 iBatis 配置的全面概述。...
Ibatis,作为一个轻量级的Java ORM框架,提供了强大的功能来处理复杂的数据映射,其中包括一对多的关系映射。在这个场景下,我们将深入探讨Ibatis如何实现一对多的关系映射。 一对多关系在数据库设计中非常常见,它...
这一改变使得iBATIS v3能够更灵活地处理多个映射文件,同时也增强了框架的可扩展性。 #### sqlMap 映射中的异同 - **DTD定义:** - **iBATIS v1**:使用的是`sql-map.dtd`。 - **iBATIS v2**:采用`sql-map-2....
### ibatis教程学习笔记 #### 一、ibatis简介与特点 ibatis 是一个基于 Java 的持久层框架,它提供了一种将 SQL 映射到 Java 对象的方式,简化了 JDBC 的复杂操作。ibatis 通过 XML 配置文件或者注解的形式来描述 ...
2. 学习笔记:个人对Ibatis的理解和实践经验,包括常见问题解决方案、最佳实践等。 3. 示例代码:实际运行的Ibatis应用示例,有助于理解Ibatis如何在项目中工作。 4. 比较分析:关于Ibatis与其他框架(如Hibernate、...
ibatis学习笔记 ibatis学习笔记 ibatis学习笔记 ibatis学习笔记 ibatis学习笔记 ibatis学习笔记 ibatis学习笔记
集合映射适用于一对多的关系,通过在XML映射文件中配置resultMap,可以将主表的一条记录映射成多个从表的对象集合。关联映射则用于一对一或一对多的关系,通过nestedResultMap或association标签,可以实现主从表的...
IBatis学习笔记以及使用心得IBatis学习笔记以及使用心得IBatis学习笔记以及使用心得IBatis学习笔记以及使用心得IBatis学习笔记以及使用心得IBatis学习笔记以及使用心得
2. 执行映射的SQL语句,iBATIS会创建PreparedStatement实例,利用对象参数执行SQL,并从ResultSet构建返回的对象。 3. 更新操作时返回受影响的行数,查询操作时返回单个对象或对象集合。 **Data Access Objects ...
本篇将深入讲解iBATIS一对一映射的概念、配置及应用,帮助你更好地理解和运用这个功能。 一对一映射在数据库设计中是指两个表之间存在一对一的关系,例如,一个员工可能只有一个部门,一个部门也只对应一个员工。在...
### iBatis 学习笔记知识点总结 #### 一、iBatis 概念与特点 **1.1 iBatis 定义** - **iBatis** 是一个基于 Java 的开源持久层框架,它专注于 SQL 映射,提供了一种将对象与数据库交互过程中的 SQL 语句进行分离的...
iBatis多对多关系详解 iBatis是一种流行的持久层框架,用于简化Java应用程序...我们使用了三个数据库表来存储学生和教师之间的多对多关系,并使用iBatis来映射数据库表和Java对象。最后,我们实现了DAO来访问数据库。
总结来说,这个话题覆盖了Mybatis/iBatis中的多表映射,通过XML配置文件处理一对一和一对多关系,以及如何在ExtJS前端通过Model和Grid获取并展示这些数据。了解这些知识对于开发涉及多表交互的应用至关重要,能够...
通过本文的学习笔记,我们可以了解到 iBatis 在简化数据库访问的同时提供了足够的灵活性。尽管 iBatis 相比 Hibernate 在自动化程度上略显不足,但对于需要高度定制 SQL 查询的场景来说,iBatis 的优势十分明显。...
四、iBatis2.x_jar包 iBatis 2.x版本是iBatis历史上的一个里程碑,其中包含了许多基础库和核心组件。这个jar包包含了以下主要部分: - iBatis核心库:提供SQL映射和数据访问的功能。 - SQLMapClient:用于创建和管理...
### IBATIS学习笔记知识点详解 #### 一、IBATIS简介 iBatis是一个用于Java的数据持久化框架,类似于Hibernate、JDO和EJB等技术。它的主要特点是将对象映射为SQL语句,这使得开发人员可以更加灵活地控制SQL的执行,...
这篇“ibatis学习笔记(一)”可能是博主对Ibatis基础概念、安装配置以及基本使用的介绍,让我们通过标签“源码”和“工具”来深入探讨Ibatis的相关知识。 首先,Ibatis是一个轻量级的Java ORM(对象关系映射)框架...