码迷,mamicode.com
首页 >  
搜索关键字:resultmap    ( 647个结果
Mybatis之动态sql
Mybatis之动态sql <!DOCTYPE mapper PUBLIC " //mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis 3 mapper.dtd" <! namespace命名空间,作用就是对sql进行分类 ...
分类:数据库   时间:2018-11-18 15:02:00    阅读次数:145
mybatis学习(2)
select元素。 自定义resultMap,自定义返回。 建表语句如下所示: 查询 ...
分类:其他好文   时间:2018-11-18 14:10:59    阅读次数:192
Mybatis返回List<Map<K,V>>
最终映射的字段名 会被作为 hashMap 的 key , ...
分类:其他好文   时间:2018-11-15 10:21:39    阅读次数:184
mybatis递归查询
<!--mybatis递归查询--><resultMap id="recursionMenuMap" type="AgentMenu" extends="BaseResultMap"> <collection property="children" ofType="AgentMenu" column ...
分类:其他好文   时间:2018-11-08 18:34:09    阅读次数:260
columnPropertyUnsame
insert into student(tname,tage,score) values(#{name}, #{age}, #{score}) delete from student where tid=#{xxx} update student set tname=#{nam... ...
分类:其他好文   时间:2018-11-06 00:53:22    阅读次数:155
MyBatis模糊查询相关
Mybatis模糊查询的实现不难,如下实例:在UserMapper.xml中根据用户名模糊查询用户: <!-- 模糊查询用户 --> <select id="findSomeUser" resultMap="userResultMap" parameterType="java.lang.String ...
分类:其他好文   时间:2018-11-04 01:51:26    阅读次数:191
关于button在form表单内的自动刷新
今天在开发中遇到了ajax传数据到后台,处理结果正常,返回的resultMap是一个Map<String,Object>类型,但是返回时显示'Fail to load response data', 多次调试无果,最后在html静态页面中发现<button>标签并没有被<form>表单包裹,在点击的 ...
分类:其他好文   时间:2018-11-04 01:41:46    阅读次数:220
MyBatis基础入门《十五》ResultMap子元素(collection)
MyBatis基础入门《十五》ResultMap子元素(collection) 描述: 见《MyBatis基础入门《十四》ResultMap子元素(association )》 》》collection >> 复杂类型集合,一对多 >> 内部嵌套 > 映射一个嵌套结果集到一个列表 >> 属性 > p ...
分类:其他好文   时间:2018-11-04 00:36:54    阅读次数:156
Mybatis--级联(一)
级联是resultMap中的配置。 级联分为3种 鉴别器(discrimination):根据某些条件采用具体实现具体实现类级联,如体检表根据性别去区分 一对一:学生和学生证 一对多:班主任和学生。 ...
分类:其他好文   时间:2018-11-03 23:14:33    阅读次数:318
Mybatis映射器(一)
XML查询参数: parameterType:可以给出类别名,全名等. resultType:查询结果,可以为 int,float,map等不可以与resultMap同时使用。 resultMap: 映射集的引用可以配置映射规则,级联,typeHandler等,是mybatis最复杂的元素。 本文返 ...
分类:其他好文   时间:2018-11-03 22:03:40    阅读次数:147
647条   上一页 1 ... 19 20 21 22 23 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!