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

 

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-05 hetylei (初级程序员)

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

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

其他回答

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


Java代码 
  1. public Map<String, Object> getTableData(String tableName) {  
  2.     return this.getSqlMapClientTemplate().queryForMap("getTableData", tableName, "tableName");  
  3. }  


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


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


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



Java代码 
  1. org.springframework.jdbc.BadSqlGrammarException: SqlMapClient operation; bad SQL grammar []; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:     
  2. --- The error occurred in cn/iwoo/demo/dao/maps/Article.xml.    
  3. --- The error occurred while applying a result map.    
  4. --- Check the getTableData-AutoResultMap.    
  5. --- Check the result mapping for the 'remarks' property.    
  6. --- Cause: java.sql.SQLException: Column 'remarks' not found.  

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

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);
		}
	}
?

结果:

class java.util.HashMap 
{prd_id=1, prd_price=206.99, prd_description=basketball}
class java.util.HashMap
{prd_id=2, prd_price=106.99, prd_description=football}
class java.util.HashMap
{price=206.99, description=basketball, id=1}
class java.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

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在MyBatis,当你在查询条件将`java.util.Date`类型的属性与`java.lang.String`类型的属性进行比较时,可能会出现报错信息"invalid comparison: java.util.Date and java.lang.String"。这是因为在比较过程,MyBatis无法将`java.util.Date`类型的属性与`java.lang.String`类型的属性进行正确的比较。 为了解决这个问题,你可以使用MyBatis提供的类型处理器来处理`java.util.Date`类型的属性。类型处理器可以将`java.util.Date`类型的属性转换为数据库的日期类型,以便正确比较。 以下是一个示例,展示了如何在MyBatis使用类型处理器来解决`java.util.Date`和`java.lang.String`比较的问题: 1. 首先,在你的MyBatis配置文件,添加类型处理器的配置: ```xml <typeHandlers> <typeHandler handler="org.apache.ibatis.type.DateTypeHandler" /> </typeHandlers> ``` 2. 然后,在你的Mapper接口,将`java.util.Date`类型的属性与`java.lang.String`类型的属性进行比较: ```xml <select id="selectByDateAndString" parameterType="map" resultType="YourResultType"> SELECT * FROM your_table WHERE date_column = #{dateProperty, jdbcType=DATE} AND string_column = #{stringProperty, jdbcType=VARCHAR} </select> ``` 在上面的示例,`date_column`是数据库的日期类型列,`string_column`是数据库的字符串类型列。`dateProperty`和`stringProperty`是你传入的参数,分别对应`java.util.Date`类型的属性和`java.lang.String`类型的属性。 通过使用类型处理器和正确设置jdbcType,你可以避免在MyBatis比较`java.util.Date`和`java.lang.String`类型时出现报错。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值