Abandoned

Note: This blog has been abandoned, any future updates will be found here: https://phillipgreenii.github.io/
Showing posts with label jndi. Show all posts
Showing posts with label jndi. Show all posts

Tuesday, April 3, 2012

Specifying ProjectStage in JNDI with WebLogic

Note: This blog has been abandoned, any future updates will be found here: https://phillipgreenii.github.io/specifying-projectstage-in-jndi-with/

Starting in JSF 2.0 (JSR-314) a feature was added called ProjectStage.  This is an attribute that signifies the stage where the project is running: DevelopmentUnitTest, SystemTest, or Production.  The idea is that if the code knows where it is running, it can plan better.  As an example, in a production environment certain optimizations could occur during startup that would cause better overal performance. However, these optimizations during start up is a problem during development because during development there is a lot more shutting down and starting up of the server.

There are two ways to specify the ProjectStage: web.xml and JNDI.  The problem with using web.xml is that you need to update or override it as you go move from one environment to the next.  JNDI is configured on the application server, so it is the ideal place to configure ProjectStage.

In WebLogic (11g), you can not add custom resources to JNDI.  So, out of the box, you can not specify ProjectStage in JNDI.

In a previous post, I described Weblogic JNDI Custom Resource Configuration, which is a project where I configure JNDI in WebLogic using Startup Classes.

Wednesday, March 28, 2012

WebLogic JNDI Custom Resource Configuration

Note: This blog has been abandoned, any future updates will be found here: https://phillipgreenii.github.io/specifying-projectstage-in-jndi-with/

I have been using WebLogic for a couple years now. While it is better than Oracle Application Server, it is missing some very important functionality. Today's complaint is the lacking of a way to add custom JNDI resources. This was discussed at stackoverflow: Custom resource in JNDI on different application servers. I am currently using Oracle WebLogic 10g (10.3.5), so my solution may not be relevant in future versions.