码迷,mamicode.com
首页 >  
搜索关键字:resultmap resulttype    ( 891个结果
mybatis注意事项
1. mybatis中查询语句中的resultType的对象的属性都要能在select语句中有对应,不能少也不能多。 例如: SELECT DISTINCT f.city_name as cityName, ifnull(c.business_type,'未知业务类型') as businessT....
分类:其他好文   时间:2015-04-16 13:49:22    阅读次数:146
mybatis批量问题
格言:好记性不如烂笔头最近用到mybatis批量插入和查询操作,现在把配置文件批量操作部分记录如下,为了日后查阅;<selectid="selectByIds"parameterType="long"resultMap="TrackingMessageinfoDOResultMap">select<includerefid="MybatisTrackingMessageinfoDAO_all_..
分类:其他好文   时间:2015-04-14 20:07:54    阅读次数:180
mybatis collection
今天在CSDN上看到一个同学在问一个mybatis的问题,所以就模拟了一下,帮助其解决问题。同学的问题:数据库语句:selecta.task,b.productNamefroma,bwherea.id=b.id;在b中一个id可能有多个productName,所以在结果的实体类task中,有字段为List<String>productsmapper.xml..
分类:其他好文   时间:2015-04-09 12:18:20    阅读次数:1040
统计指定目录下面的文件类型及数量
/** * 统计指定目录下面的文件类型及数量 * * @author Administrator * */ public class FileCountTest { // 定义静态变量resultMap,存放文件类型和对应数量 public static final Map resultMap = new HashMap();...
分类:其他好文   时间:2015-04-06 23:23:58    阅读次数:415
项目实例改编:利用structs2的action 实时显示图片、pdf和其他内容的框架抽取。(转)
转自:http://www.verydemo.com/demo_c167_i1382.html针对:预览文件(图片,PDF)文件来源为action中的inputStream重点: structs2的action的配置 action的写法和结果类型 resulttype的写法 网页上实时显示1stru...
分类:其他好文   时间:2015-04-05 20:11:05    阅读次数:153
mybatis 常见问题
1、 mapper.xml中的resultMap中的parameterType INTEGER要大写。 中的 parameterType=”int”不是 parameterType=”Integer” 2、查询时数据库字段值如果为空,返回的结果集会有默认值 如果是Integer和String类型在实体类中,通过generator自动生成实体中已经处理了Null的情况 public Stri...
分类:其他好文   时间:2015-03-16 19:22:41    阅读次数:177
mybatis_动态sql 查询、更新
1)sql where 条件select id="find" parameterType="User" resultType="User"> select id,name, age,address from user_c where 1=1 and id=#{id} and name li...
分类:数据库   时间:2015-03-15 22:50:05    阅读次数:189
ibatis的resultClass与resultMap 的区别
ibatis的resultClass与resultMap还是有很大的区别。以下是我碰到的一个问题。 配置文件写法如下: 1 sqlMap2 typeAlias alias="notice" type="path.country.basic.entity.Notice"/3 resultMap id....
分类:其他好文   时间:2015-03-02 14:41:42    阅读次数:147
hao947 : Mybatis resultMap配置插入和主键自增返回 : 好947
映射配置文件 好947映射配置查询语句 好947 insert into person (person_id, name, gender, person_addr, birthday)values(#{personId}, #{name}, #{gende...
分类:其他好文   时间:2015-02-14 11:01:57    阅读次数:110
mybatis 嵌套查询子查询column传多个参数描述
mybatis 嵌套查询子查询column传多个参数如下: 1、图解 2、代码示例 备注:注意,相同颜色的单词都是有关联的。 <resultMap id="blogResult" type="Blog"> ? <association property="author" column="{id=autho...
分类:其他好文   时间:2015-02-05 18:51:17    阅读次数:232
891条   上一页 1 ... 83 84 85 86 87 ... 90 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!