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批量插入和查询操作,现在把配置文件批量操作部分记录如下,为了日后查阅;<selectid="selectByIds"parameterType="long"resultMap="TrackingMessageinfoDOResultMap">select<includerefid="MybatisTrackingMessageinfoDAO_all_..
分类:
其他好文 时间:
2015-04-14 20:07:54
阅读次数:
180
今天在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
转自:http://www.verydemo.com/demo_c167_i1382.html针对:预览文件(图片,PDF)文件来源为action中的inputStream重点: structs2的action的配置 action的写法和结果类型 resulttype的写法 网页上实时显示1stru...
分类:
其他好文 时间:
2015-04-05 20:11:05
阅读次数:
153
1、 mapper.xml中的resultMap中的parameterType
INTEGER要大写。
中的 parameterType=”int”不是 parameterType=”Integer”
2、查询时数据库字段值如果为空,返回的结果集会有默认值
如果是Integer和String类型在实体类中,通过generator自动生成实体中已经处理了Null的情况
public Stri...
分类:
其他好文 时间:
2015-03-16 19:22:41
阅读次数:
177
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还是有很大的区别。以下是我碰到的一个问题。 配置文件写法如下: 1 sqlMap2 typeAlias alias="notice" type="path.country.basic.entity.Notice"/3 resultMap id....
分类:
其他好文 时间:
2015-03-02 14:41:42
阅读次数:
147
映射配置文件 好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传多个参数如下: 1、图解 2、代码示例 备注:注意,相同颜色的单词都是有关联的。 <resultMap id="blogResult" type="Blog"> ? <association property="author" column="{id=autho...
分类:
其他好文 时间:
2015-02-05 18:51:17
阅读次数:
232