我已經定義了以下域類:Grails領域類
class Content {
Map i18nDescription = [:]
...
}
如果運行下面的代碼
content.i18nDescription['it'] = "desc desc...."
content.save()
我得到以下錯誤:
util.JDBCExceptionReporter ERROR: value too long for type character varying(255)
(我使用postgres作爲數據庫)
我怎樣才能使用
static constraints = {}
感謝
是[this SO answer with solution](http://stackoverflow.com/questions/3237393/how-to-adjust-constraints-db-mapping-for-map-within-grails-domain-class)可以接受你呢? – Grooveek