I am working on a GWT application, and we introduced the Money class, which contains java.util.Currency. The only problem is that the GWT does not seem to support this class.
I did a Google search and found this code in the GWT source code, but I'm not quite sure what “jat numberformat-r2942” means, or how to inherit it in my project. Has anyone successfully been able to use this GWT library? If not, what is the best way to deal with currencies in the GWT app?
Should I just grab the currency as a string on the client side and then create the Currency object on the server side? We are trying to use the GWT-dispatch library , so I would like to use the same bean on the client and server side.
source
share