I need some configuration files, that can be changed without recompiling the project in my GWT application. However, the GWT i18n doesn’t allow to be used serverside.
So what’s the solution for getting configuration constants to be used serverside?
Thanks.
If you only need them on the server side then go with the standard java.util.Properties class. If you want to share constants between both then create an additional RPC service call to get the list of properties to your client.