Best practice to represent Money (value + currency) in Grails

后端 未结 5 1261
逝去的感伤
逝去的感伤 2021-02-14 17:01

I\'m not much familiar to Java Currency type, and how it being used in Grails. Though, I\'m yet to use it, I saw a tag to use in the views.

5条回答
  •  鱼传尺愫
    2021-02-14 17:14

    You might want to take a look a the Currencies plugin. It provides a Money class for holding monetary amounts of differing currencies. They can be embedded into domain classes like so:

    class CustomerTransaction {
        Date date = new Date()
        Money amount
    
        static embedded = ['money']
    }
    

提交回复
热议问题