Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

with every project, I automatically run into a problem with reserved SQL word when I use properties like status or user in my Grails domain classes.

So I always have to add a

static mapping = {
    status column:'prefix_status'
}

to my classes.

I now wonder if there is an easy way to prefix all columns with a given string?

If there is nothing out of the box, I guess it would be possible to create a plugin which automagically injects such a mapping in all domain classes - can someone point me to a code example which modifies a class whenever it changes?

share|improve this question

1 Answer

up vote 5 down vote accepted

This is already answered in the manual:

Object Relational Mapping (GORM) - Custom Naming Strategy

Add to DataSource.groovy Config:

hibernate {
    ...
    naming_strategy = com.myco.myproj.CustomNamingStrategy
}

Custom Naming Class (under src/groovy/com/myco/myproj/CustomNamingStrategy.groovy):

package com.myco.myproj

import org.hibernate.cfg.ImprovedNamingStrategy
import org.hibernate.util.StringHelper

class CustomNamingStrategy extends ImprovedNamingStrategy {

    String propertyToColumnName(String propertyName) {
        "prefix_" + StringHelper.unqualify(propertyName)
    }
}
share|improve this answer
Thanx! The documentation quality is really great and I should re-read it more often :-) – Ralf Oct 5 '11 at 11:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.