`

ibatis中parameterClass="java.util.HashMap"

 
阅读更多
ibatis映射文件sqlmap.xml中:
1、
Map<String, Object> parameter = new HashMap<String, Object>();
parameter.put("USERID", userId);
parameter.put("ID", edition);
try {
sqlMapClient.update("update", parameter);
} catch (SQLException e) {
return false;
}
2、
<update id="update" parameterClass="java.util.HashMap">
     UPDATE TAB SET EDITION=#ID# WHERE USERID=#USERID#
</update>
分享到:
评论

相关推荐

    ibatis 用HashMap解决resultClass映射

    &lt;select id="getDynamicTable" resultClass="java.util.HashMap" remapResults="true" parameterClass="java.lang.Integer"&gt; select t.* from some_table t where t.status = #{status} ``` 这里需要注意的是,`#...

    ibatis的多参数查询.doc

    &lt;select id="checkLogin2" parameterClass="java.util.Map" resultClass="java.lang.Integer"&gt; SELECT count(*) AS value FROM userinfo WHERE uid=#uid# and pwd=#pwd# ``` **Java代码:** ```java Map, ...

    解决IBatis缓存动态字段问题

    parameterClass="java.util.HashMap" resultClass="java.util.HashMap" remapResults="true"&gt; select $fieldnames$ from $resourcetable$ where 1=1 &lt;include refid="select_data_by_condition"/&gt; ``` 这里的 ...

    ibatis高级特性

    &lt;select id="getUsersByCriteria" parameterClass="java.util.Map" resultMap="get-user-result"&gt; &lt;![CDATA[ select id, name, sex from t_user &lt;if test="name != null"&gt; where name like #{name} ]]&gt; ...

    Ibatis资料ibatai sql map iBATIS使用$和#的一些理解

    &lt;select id="getPeopleList" resultClass="model.User" parameterClass="java.util.Map"&gt; &lt;![CDATA[ select * from test where name like '%$name$%' ]]&gt; ``` 在Java代码中,我们创建一个HashMap,并将参数放入...

    Spring and iBATIS

    &lt;update id="executeProcedure" parameterClass="java.util.Map"&gt; {call my_procedure(#{param1}, #{param2})} ``` 在Java代码中,可以通过传递参数调用这个存储过程: ```java Map, Object&gt; params = new ...

    ibatis的动态查询

    &lt;select id="selectAllProducts" parameterClass="java.util.HashMap" resultMap="ProductResult"&gt; select id, note from Product &lt;dynamic prepend="WHERE"&gt; &lt;!-- isPropertyAvailable 判断属性是否有效 --&gt; ...

    ibatis学习文档

    `parameterClass`属性设置为`java.util.HashMap`,这意味着参数将作为一个HashMap传递。在`&lt;iterate&gt;`标签中,`property="ArrValue"`指定了HashMap中的键,对应数组参数的名称。例如,如果你的HashMap包含键`...

    iBatis习惯用的16条SQL语句

    3. **输入参数为一个`java.util.HashMap`** 在查询时,当参数类型是HashMap时,可以方便地传递多个参数,例如按条件筛选并分组: ```xml &lt;select id=...

Global site tag (gtag.js) - Google Analytics