views:

115

answers:

3

My JSP pages need to display different information depending on which environment they're in (dev, production, sandbox, etc). I want to have a properties file for each of these environments that contain all the parameters they might need. How can I reference the properties from this file in a JSP page?

My thoughts are:

  • Have a servlet feed the properties in the form of a model object to all JSP pages so I can reference them like ${properties.propertyName}
  • Somehow reference this property file in the web.xml, then maybe I call something like ${context.properties.propertyName}?
  • Instead of a properties file, list parameters in web.xml and reference those in the JSP pages. Not sure how to do this, but I'd very much prefer a simpler properties file.

UPDATE - I should've mentioned I'm using Spring 3.0 and Spring webmvc. So if there's some best practices way to do this using Spring, that's ideal!

+2  A: 
  • You can load the properties using java.util.Properties (or commons-configuration) in a ServletContextListener's contextInitialized(..) method.

  • register the listener with <listener> in web.xml

  • You then store the Properties into the ServletContext (you can get it from the event) (ctx.setAttribute("properties", properties)

  • then access the properties using ${applicationScope.properties.propName} (as BalusC noted, applicationScope is optional)

Update:

Initially I thought spring had some ready-to-use facility for that, but it turns out it's not exactly the case. You have two options:

  • this article explains something similar to my suggestion above, but using spring's PropertyPlaceholderConfigurer

  • this answer and this answer allow you to expose all your beans, including a PropertyPlaceholderConfigurer to the servlet context.

Bozho
For the case it's not clear to the OP: the `applicationScope` part in EL is optional.
BalusC
the 2 answers in your update was exactly what I was looking for. Thanks.
at
A: 

Without going into the discussion of where is the best location to store environment-specific data (hint: certainly not property files), I would stick to the basics:

JSP pages render data; they don't fetch it. If at some point, later on, you end up getting properties from somewhere else other than a property file - your JSP, assuming your application is well-designed - should not change.

Therefore, the first approach you mentioned makes sense (assuming, again, that you'd like to stick with environment-specific information being read from Property files).

Isaac
where do you suggest storing environment-specific data?
at
After spending months over months researching all alternatives - I reached the conclusion that using Resource Environment Entries is by far the most flexible approach. Your program will never change as part of environment shifts. Read more about resource environment entries and how to use them here: http://www.ibm.com/developerworks/websphere/library/techarticles/0611_totapally/0611_totapally.html - it talks WebSphere, but the concept of ResEnvEntries is J2EE-standard and every application server that I know of supports it.
Isaac
A: 
  1. Place the properties file in a known location within your project. For example: /WEB-INF/config/environment.properties.
  2. Create a simple java bean class that has getters (accessors if you like) exposing each of the desired properties (I will refer to this as the PropertyExposer class). For example: PropertyExposer.getEnvironmentName()
  3. In a startup class (maybe a SessionContextListener or a servlet with a low <load-on-startup> value) load the properties, create your PropertyExposer object, and store it in session (or application based on your needs) scope.

After doing the above, your properties will be available to your JSP files.

If you initialize using a SessionContextListener (this is not valid code, but the point is made):


SessionContextListenser.contextInitialized(ServletContextEvent event)
{
    event.getServletContext().setAttribute();  // set application scope value.
}

If you initialize using a Servlet (assuming you extend GenericServlet):


YourServletClass.init()
{
    getServletContext().setAttribute(); // set application scope value.
}

dwb
How do I store and access the propertyExposer in application scope? I like the idea, especially if I can poll the file periodically with my bean.
at