Grails 2.3.8 domain class has name Order -
i failing integration test because in project there domain class named order. known keyword in sql. exception generated hints @ sqlgrammarexception. 1 obvious solution rename class. there solution allow me keep name of class is?
you can escape name specifying mapping
class order { static mapping = { table "`order`" } }
Comments
Post a Comment