vote up 0 vote down star

I've been building a GWT 1.7 + GAE application using the eclipse plugin. The system constants are loaded into a MyConstants.properties file that is loaded by the singleton MyConstants class extending the ...gwt.i18n.client.Constants class.

I would like for MyConstants to load one of several files containing settings like

  • MyConstants-local.properties
  • MyConstants-alpha.properties
  • MyConstants-beta.properties
  • MyConstants-prod.properties

I've found several references to Guice's Enum Stage but this does not seem to be supported by gin. Besides, it only handles dev/prod and I definitely need a local/beta/prod solution.

Is there a way to do this using a command line arg or some other instance defined runtime parameter that will work when loaded onto GAE?

flag
Do you need the constants client or server side? – Fedearne Nov 9 at 13:37
That is exactly the issue I was struggling with recently. When I first wrote this question, I was under the impression that i18n.Constants would work the same on both gwt (browser) and gae (server). Turns out Google's i18n library is browser side only (non-portable to the server). In addition, Guice's Stage enum, which is as feasible solution as the one suggested by 'a paid nerd' , is not supported in Gin. – Stevko Nov 13 at 5:08

1 Answer

vote up 0 vote down

One thing that's different between the development and deployed environment is the SERVER_SOFTWARE environment variable:

if (System.getenv("SERVER_SOFTWARE").startsWith("Dev")) {
  // Load MyConstants-dev.properties
} else {
  // Load MyConstants-prod.properties
}

Maybe you can pick which Guice module to load based off of that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.