ibatis中动态查询表返回用resultClass="java.util.HashMap" 的问题

Ibatis动态查询表返回HashMap问题
本文解决了一个使用Spring+Ibatis进行动态查询表时返回HashMap遇到的问题,即重新查询不同表时出现上一次查询的字段信息残留,通过设置remapResults属性为true成功解决。

ibatis中动态查询表返回用resultClass="java.util.HashMap" 的问题

悬赏:5发布时间:2008-07-29 提问人:樊宝最帅(初级程序员)
用spring+ibatis写了一个登陆页面输入表名 然后在页面查询出表的数据,

sql配置文件
</select>
<select id="getTableDataByPage" resultClass="java.util.HashMap" parameterClass="java.util.HashMap">
<![CDATA[
select * from (select rownum id,t.* from
$tableName$ t where rownum<= #endNum# ) b where b.id>= #startNum#
]]>
</select>

第一次运行服务器输入一个表名可以查询出表的所有信息,退出返回到登陆页面重新输入一个表名查询就会出错
日志显示:
Cause: java.sql.SQLException: 列名无效
com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred in com/zf/querytest/bo/impl/tableDao.xml.
--- The error occurred while applying a result map.
--- Check the tableDao.getTableDataByPage-AutoResultMap.
--- Check the result mapping for the 'TASKID' property.

其中TASKID为上一张表中的字段,也就是ResultMap中保留了上个表的字段信息,将sqlMapClient中的cacheModelsEnabled设置为"false"也不行
请问我要怎样修改才能在重新输入表名后查询后返回新的表的结果了,请大家帮帮忙,谢谢
问题补充:
感谢lggege的关注,目前只能重新启动才能重新查询另一张表的数据

采纳的答案

2008-08-05hetylei(初级程序员)

Java代码
  1. </select>
  2. <selectid="getTableDataByPage"resultClass="java.util.HashMap"parameterClass="java.util.HashMap"remapResults="true">
  3. <![CDATA[
  4. select*from(selectrownumid,t.*from
  5. $tableName$twhererownum<=#endNum#)bwhereb.id>=#startNum#
  6. ]]>
  7. </select>

提问者对于答案的评价:
好的 经测试解决了,原来有remapResults这个属性,谢谢你的帮助

其他回答

这是我的测试代码:
Xml代码
  1. <selectid="getTableData"resultClass="java.util.HashMap"parameterClass="java.lang.String">
  2. <![CDATA[
  3. SELECT*FROM$tableName$
  4. ]]>
  5. </select>


Java代码
  1. publicMap<String,Object>getTableData(StringtableName){
  2. returnthis.getSqlMapClientTemplate().queryForMap("getTableData",tableName,"tableName");
  3. }


Java代码
  1. publicvoidtestGetTableData(){
  2. Map<String,Object>values1=this.articleDao.getTableData("one");
  3. assertNotNull(values1);
  4. Map<String,Object>values2=this.articleDao.getTableData("two");
  5. assertNotNull(values2);
  6. }


运行期间的SQL:
Java代码
  1. ExecutingStatement:SELECT*FROMone
  2. Parameters:[]>
  3. Types:[]>
  4. ResultSet>
  5. Header:[id,name]>
  6. Result:[1,z]>
  7. ExecutingStatement:SELECT*FROMtwo>
  8. ...
  9. Header:[id,name]>
  10. Result:[2,zz]>


数据库表结构:
Sql代码
  1. mysql>descone;
  2. +-------+-------------+------+-----+---------+-------+
  3. |Field|Type|Null|Key|Default|Extra|
  4. +-------+-------------+------+-----+---------+-------+
  5. |id|int(20)|YES||NULL||
  6. |name|varchar(20)|YES||NULL||
  7. +-------+-------------+------+-----+---------+-------+
  8. 2rowsinset(0.02sec)
  9. mysql>desctwo;
  10. +-------+-------------+------+-----+---------+-------+
  11. |Field|Type|Null|Key|Default|Extra|
  12. +-------+-------------+------+-----+---------+-------+
  13. |id|int(20)|YES||NULL||
  14. |name|varchar(20)|YES||NULL||
  15. +-------+-------------+------+-----+---------+-------+
  16. 2rowsinset(0.00sec)
lggege(架构师) 2008-07-30 举报
所以, 我的测试, 不会发生第二次查询结果Map 会是前一次查询的.
lggege(架构师) 2008-07-30 举报
可能是因为 我的表one和表two 的schema是一样的, 我改下再测试.
lggege(架构师) 2008-07-30 举报
Sql代码
  1. mysql>descone;
  2. +---------+-------------+------+-----+---------+-------+
  3. |Field|Type|Null|Key|Default|Extra|
  4. +---------+-------------+------+-----+---------+-------+
  5. |id|int(20)|YES||NULL||
  6. |name|varchar(20)|YES||NULL||
  7. |remarks|varchar(20)|YES||NULL||
  8. +---------+-------------+------+-----+---------+-------+
  9. 3rowsinset(0.00sec)
  10. mysql>desctwo;
  11. +-------+-------------+------+-----+---------+-------+
  12. |Field|Type|Null|Key|Default|Extra|
  13. +-------+-------------+------+-----+---------+-------+
  14. |id|int(20)|YES||NULL||
  15. |name|varchar(20)|YES||NULL||
  16. +-------+-------------+------+-----+---------+-------+
  17. 2rowsinset(0.01sec)



Java代码
  1. org.springframework.jdbc.BadSqlGrammarException:SqlMapClientoperation;badSQLgrammar[];nestedexceptioniscom.ibatis.common.jdbc.exception.NestedSQLException:
  2. ---Theerroroccurredincn/iwoo/demo/dao/maps/Article.xml.
  3. ---Theerroroccurredwhileapplyingaresultmap.
  4. ---CheckthegetTableData-AutoResultMap.
  5. ---Checktheresultmappingforthe'remarks'property.
  6. ---Cause:java.sql.SQLException:Column'remarks'notfound.

确实发生了这个问题, 这是在第二个查询时抛出的异常..

1.Map作为parameterClass

映射文件:

<!--use Map type as parameterClass-->
		<select id="getProduct-Map" parameterClass="java.util.Map" resultMap="get-product-result">
			<![CDATA[
				select * from t_product
				where prd_id=#id# and prd_description=#description#
			]]>
		</select>

?DAO层:

/**
	 * java.util.Map作为parameterClass
	 */
	public Product getProductMap(Map map) throws SQLException {
		init();
		Product product = (Product)sqlMapClient.queryForObject("getProduct-Map", map);
		return product;
	}

?Test类:

public void getProductMap() throws SQLException{
		Map map = new HashMap();
		map.put("id", new Integer(1));
		map.put("description", "basketball");
		Product product = productDao.getProductMap(map);
		System.out.println(product);
	}

?结果:

id:1
description:basketball
price206.99

?

?

2.Map作为resultClass

映射文件:

<resultMap id="get-product-map" class="java.util.HashMap">
			<result property="id" column="prd_id"/>
			<result property="description" column="prd_description"/>
			<result property="price" column="prd_price"/>
		</resultMap>

<!--START  use Map type as resultClass,MUST use java.util.HashMap instead java.util.Map-->
		<select id="getProdcut-MapResult" resultClass="java.util.HashMap
">
			<![CDATA[
				select * from t_product
			]]>
		</select>
		
		<select id="getProductUseMap-resultMap" resultMap="get-product-map">
			<![CDATA[
				select * from t_product
			]]>
		</select>
		<!-- END  -->

?DAO层:

/**
	 * java.util.Map作为resultClass
	 */
	public List getProductMapResult() throws SQLException {
		init();
		List list = sqlMapClient.queryForList("getProdcut-MapResult");
		return list;
		
	}


	public List getProductUseMapByResultMap() throws SQLException {
		init();
		List list = sqlMapClient.queryForList("getProductUseMap-resultMap");
		return list;
	}

?Test类:

public void getProductMapResult() throws SQLException{
		Map map = null;
		List list = productDao.getProductMapResult();
		for(Iterator it=list.iterator(); it.hasNext();) {
			//List里存放的是java.util.Map类型
			Object obj = (Object)it.next();
			System.out.println(obj.getClass());
			System.out.println(obj);
		}
	}
	
	public void getProductUseMapByResultMap() throws SQLException {
		Map map = null;
		List list = productDao.getProductUseMapByResultMap();
		for(Iterator it=list.iterator(); it.hasNext();) {
			//List里存放的是java.util.Map类型
			Object obj = (Object)it.next();
			System.out.println(obj.getClass());
			System.out.println(obj);
		}
	}
?

结果:

classjava.util.HashMap
{prd_id=1, prd_price=206.99, prd_description=basketball}
classjava.util.HashMap
{prd_id=2, prd_price=106.99, prd_description=football}
classjava.util.HashMap
{price=206.99, description=basketball, id=1}
classjava.util.HashMap
{price=106.99, description=football, id=2}

?

?

注意:Map作为resultClass时,必须指定具体的实现类,比如java.util.HashMap,否则会报错

Caused by: java.lang.RuntimeException: JavaBeansDataExchange could not instantiate result class.? Cause: java.lang.InstantiationException: java.util.Map

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值