mybatis generator配置独立sequence

 
  
正常情况下mybatis 使用last_insert_id()就可以了,但为了防止同时插入多条产生的不正确的情况,还是用独立的sequence表好
全局用一个还能隐藏,不会被人猜到。
注意:
字段一定要用无符号的:bigint,以免溢出。
 
  
mysql 数据大小 int 4294967295 ,bigint 18446744073709551615
 
  

附配置文件:
<table tableName="%">
    
    

    
    

    
    <generatedKey column="id" sqlStatement="SELECT seq()" identity="true" type="post"/>
    

table>

参考:http://blog.haohtml.com/archives/15222


你可能感兴趣的:(Database)