Our Application in production runs on weblogic. It is a spring and struts based web application. There is a requirement to db load the queries and a capability to reload on the fly through a GUI handle. Some of the existing utility files are not configured as a bean in spring (cannot be at this point) and are having static methods which use the static variables/constants for the query to be run in each of those static methods. I dont understand how Weblogic cluster will behave if I have to reload the queries from DB while app is up and running. To put the question in other words, how do we ensure that reload of queries on the static variables happen on all the JVMs so that next hit on the method on any node will fetch the result of the newly loaded query?