How to use i18n with a Grails/Groovy enum in a g:select?

前端 未结 3 1713
谎友^
谎友^ 2021-02-04 16:10

i am trying to get i18n localisation working on an Grails/Groovy enum,

public enum Notification  {
    GENERIC(0),
    CONFIRM_RESERVATION(100),
    CONFIRM_ORDE         


        
相关标签:
3条回答
  • 2021-02-04 16:25

    One method is shown in this blog post by Rob Fletcher (from 2009)

    Make sure your enum class implements org.springframework.context.MessageSourceResolvable

    Then implement the methods it defines

    0 讨论(0)
  • 2021-02-04 16:31

    Sorry for the delay but I think this could help you. I was having the exact same problem with enums and i18n. This is the solution I found:

    Following your enum defined before, in your message.properties files put an entry for each value of the enum for example:

    enum.value.GENERIC
    enum.value.CONFIRM_RESERVATION
    enum.value.CONFIRM_ORDER
    enum.value.CONFIRM_PAYMENT
    

    Then when you want to show the values of the enum in a select element then do as follows:

    <g:select from="${path.to.package.Notification.values()}"  keys="${path.to.package.Notification?.values()}" name="notification" valueMessagePrefix="enum.value"/>
    

    According to the Grails documentation regarding the select tag, the value you put in the attribute valueMessagePrefix is used followed by a dot(.) and then the value of the element of the enum. So that way it would go to the message.properties file and search for the lines you put before.

    Now, the other thing you would need to do is for example in a list of data, show the value of the enum for each record. In that case you need to do as follows:

    ${message(code:'enum.value.'+fieldValue(bean: someDomainClass, field: "notification"))}
    

    This is if you have a domain class with one attribute of type Notification.

    Hope this helped. Bye!

    0 讨论(0)
  • 2021-02-04 16:47

    You need to implement MessageSourceResolvable to provide your codes:

    enum Notification implements org.springframework.context.MessageSourceResolvable {
    
        GENERIC(0),
        CONFIRM_RESERVATION(100),
        CONFIRM_ORDER(200),
        CONFIRM_PAYMENT(300),
    
        final int id;
    
        private Notification(int id) {
            this.id = id
        }
    
        String toString() {
            id.toString()
        }
    
        String getKey() {
            name()
        }
    
        public Object[] getArguments() { [] as Object[] }
    
        //This methods do the trick
        public String[] getCodes() { [ "notification." + name() ] }
    
        public String getDefaultMessage() { name() }
    }
    

    And define your messages in i18n:

    notification.GENERIC=Generic
    notification.CONFIRM_RESERVATION=Confirm reservation
    notification.CONFIRM_ORDER=Confirm order
    notification.CONFIRM_PAYMENT=Confirm payment
    

    The select tag should look like this:

    <g:select name="type" from='${Notification.values()}' optionKey="id"/>
    
    0 讨论(0)
提交回复
热议问题