码迷,mamicode.com
首页 > 数据库 > 详细

SSM+Oracle自动生成uuid作为主键

时间:2020-05-27 20:42:54      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:pch   for   bsp   gui   param   strong   parameter   获取   ring   

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>

 

SSM+Oracle自动生成uuid作为主键

标签:pch   for   bsp   gui   param   strong   parameter   获取   ring   

原文地址:https://www.cnblogs.com/uzxin/p/12975911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!