grails应用和mybatis应用关于oracle的整合
最近项目中需要,管理端使用grails框架,用户端使用servlet和mybatis。
流程:使用grails创建表,使用mybatis对表进行操作。
问题:grails使用hibernate进行库的操作,既可以使用自身的id增长策略也可以使用oracle的id增长策略,但是mybatis需要使用oracle的id策略,更新、删除、查询不受此影响
解决:在grails的domain中对表id进行设置:
static mapping = { id generator: 'sequence',params: [sequence: 'seq_audit',start_with:1,nocache:true,increment_by:1]; }
运行grails程序,自动建表。
在mybatis中使用,INSERT INTO app_login_info(id,user_id) VALUES (seq_applogin.nextval,#{userId}')
关于使用oracle进行分页查询的备忘,本项目中mybatis使用xml,“<![CDATA[”用于sql的转义。
<select id="getGroupWithFunctionByRecord" parameterType="java.util.HashMap" resultType="com.itrus.pojo.GroupWithFunction"> <![CDATA[select * from ( select gwf.group_id as groupId, gwf.function_id as functionId, rownum rn from group_with_function gwf,uts_group grp where gwf.group_id = grp.id and grp.type != 'person' and rownum <= #{pageSize} order by grp.id ) where rn >= #{firstResult}]]> </select>
此写法有助于提高查询性能。oracle在执行时会将rn >= #{firstResult}放入里面查询,用以提高查询效率。
写在这里仅作为备忘,也为需要的朋友一点参考。
相关推荐
hooopo 2014-07-12
80447518 2014-06-18
purpen 2014-05-23
jackyzhuyuanlu 2015-02-12
龙浩然 2015-11-06
daociyiyou 2016-11-07
coderbx 2013-03-11
yehell 2012-04-24
yeyedeyatou 2011-08-04
Ben的程序员生涯 2011-04-29
jieren 2010-02-18
carpenterworm 2009-04-03
trapeze 2008-06-06
掘井之路 2019-07-01