grails - Generator for non-id column -
i'm trying generator work both id column , use sequence different, non-id column.
this doesn't seem anything. column still null after doing save (in integration tests).
static mapping = { id generator: 'sequence', params: [sequence: 'id_seq'] othercol generator: 'sequence', params: [sequence: 'other_seq'] version true }
to knowledge, generator option works id columns. based on hibernate @generatedvalue used in conjunction @id annotation.
see:
http://grails.github.io/grails-doc/3.0.x/guide/single.html#identity
Comments
Post a Comment