There are a few examples of ENUM on Grails (here in SO as well), but I am not being able to get the desired results.
Solutions include 1) By having the ENUM in a separate class under the src/groovy Domain Class
class Offer {
PaymentMethod acceptedPaymentMethod
..
}
src/groovy PaymentMethod
public enum PaymentMethod {
BYBANKTRANSFERINADVANCE('BANKADVANCE'),
BYINVOICE('ByInvoice'),
CASH('Cash'),
CHECKINADVANCE('CheckInAdvance'),
PAYPAL('PayPal'),
String id
PaymentMethod(String id) {
this.id = id
}
}
In this case the Enum Class is not recognized at all at the domain class issuing an error. Looked like this used to work for Grails prior to version 2.
Am I missing something here? How to use external ENUM class in a domain in Grails?
2) Place ENUM within the domain class.
In this case the grails does not complain while compiling, but the scaffolding does not include any info the ENUM values (it is like the property acceptedPaymentMethod is not included at all in the scaffolding process) Example:
class Offer {
PaymentMethod acceptedPaymentMethod
..
enum PaymentMethod {
BYBANKTRANSFERINADVANCE('BANKADVANCE'),
BYINVOICE('ByInvoice'),
CASH('Cash'),
CHECKINADVANCE('CheckInAdvance'),
PAYPAL('PayPal'),
String id
PaymentMethod(String id) {
this.id = id
}
}
}
Checking the structure of the DB Table, the field is not an ENUM but a simple VarChar:
| accepted_payment_method | varchar(255) | YES | | NULL | |
Is there support for ENUMs on Grails Gorm at all?
Since GORM 6.1 IdentityEnumType handling changed. In order to store enum by id and not by name or ordial use
Just tried with Grails 2.3.4 and it worked with the src/groovy approach:
src/groovy/PaymentMethod.groovy
grails-app/domain/CustomDomain.groovy
Then I ran
grails generate-all CustomDomain
, and here's the_form.gsp
it generated:Note that in Grails 2.3.x the scaffold feature was transformed into a plugin, so you need to include the following in your
BuildConfig.groovy
: