oracle数据库获取uuid:select rawtohex(sys_guid()) from dual;
mapper.xml实例
<insert id="insert" parameterType="net.topcheer.module.entity.TsOperateLog">
<selectKey resultType="String" keyProperty="id" order="BEFORE">
select rawtohex(sys_guid()) from dual
</selectKey>
insert into TS_OPERATE_LOG (ID, OPERATE_USER_ID, OPERATE_USER_NAME,
IP, DEVICE, BROWSER, OPERATE_CONTENT)
values (#{id,jdbcType=VARCHAR}, #{operateUserId,jdbcType=OTHER}, #{operateUserName,jdbcType=VARCHAR},
#{ip,jdbcType=VARCHAR}, #{device,jdbcType=VARCHAR},
#{browser,jdbcType=VARCHAR}, #{operateContent,jdbcType=VARCHAR})
</insert>