ibatis中动态查询表返回用resultClass="java.util.HashMap" 的问题
悬赏:5发布时间:2008-07-29 提问人:樊宝最帅(初级程序员)
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(初级程序员)
- </select>
- <selectid="getTableDataByPage"resultClass="java.util.HashMap"parameterClass="java.util.HashMap"remapResults="true">
- <![CDATA[
- select*from(selectrownumid,t.*from
- $tableName$twhererownum<=#endNum#)bwhereb.id>=#startNum#
- ]]>
- </select>
提问者对于答案的评价:
好的 经测试解决了,原来有remapResults这个属性,谢谢你的帮助
其他回答
- <selectid="getTableData"resultClass="java.util.HashMap"parameterClass="java.lang.String">
- <![CDATA[
- SELECT*FROM$tableName$
- ]]>
- </select>
- publicMap<String,Object>getTableData(StringtableName){
- returnthis.getSqlMapClientTemplate().queryForMap("getTableData",tableName,"tableName");
- }
- publicvoidtestGetTableData(){
- Map<String,Object>values1=this.articleDao.getTableData("one");
- assertNotNull(values1);
- Map<String,Object>values2=this.articleDao.getTableData("two");
- assertNotNull(values2);
- }
运行期间的SQL:
- ExecutingStatement:SELECT*FROMone
- Parameters:[]>
- Types:[]>
- ResultSet>
- Header:[id,name]>
- Result:[1,z]>
- ExecutingStatement:SELECT*FROMtwo>
- ...
- Header:[id,name]>
- Result:[2,zz]>
数据库表结构:
- mysql>descone;
- +-------+-------------+------+-----+---------+-------+
- |Field|Type|Null|Key|Default|Extra|
- +-------+-------------+------+-----+---------+-------+
- |id|int(20)|YES||NULL||
- |name|varchar(20)|YES||NULL||
- +-------+-------------+------+-----+---------+-------+
- 2rowsinset(0.02sec)
- mysql>desctwo;
- +-------+-------------+------+-----+---------+-------+
- |Field|Type|Null|Key|Default|Extra|
- +-------+-------------+------+-----+---------+-------+
- |id|int(20)|YES||NULL||
- |name|varchar(20)|YES||NULL||
- +-------+-------------+------+-----+---------+-------+
- 2rowsinset(0.00sec)
- mysql>descone;
- +---------+-------------+------+-----+---------+-------+
- |Field|Type|Null|Key|Default|Extra|
- +---------+-------------+------+-----+---------+-------+
- |id|int(20)|YES||NULL||
- |name|varchar(20)|YES||NULL||
- |remarks|varchar(20)|YES||NULL||
- +---------+-------------+------+-----+---------+-------+
- 3rowsinset(0.00sec)
- mysql>desctwo;
- +-------+-------------+------+-----+---------+-------+
- |Field|Type|Null|Key|Default|Extra|
- +-------+-------------+------+-----+---------+-------+
- |id|int(20)|YES||NULL||
- |name|varchar(20)|YES||NULL||
- +-------+-------------+------+-----+---------+-------+
- 2rowsinset(0.01sec)
- org.springframework.jdbc.BadSqlGrammarException:SqlMapClientoperation;badSQLgrammar[];nestedexceptioniscom.ibatis.common.jdbc.exception.NestedSQLException:
- ---Theerroroccurredincn/iwoo/demo/dao/maps/Article.xml.
- ---Theerroroccurredwhileapplyingaresultmap.
- ---CheckthegetTableData-AutoResultMap.
- ---Checktheresultmappingforthe'remarks'property.
- ---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
Ibatis动态查询表返回HashMap问题
本文解决了一个使用Spring+Ibatis进行动态查询表时返回HashMap遇到的问题,即重新查询不同表时出现上一次查询的字段信息残留,通过设置remapResults属性为true成功解决。
239

被折叠的 条评论
为什么被折叠?



