Issue Details (XML | Word | Printable)

Key: CONFIGURATION-341
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Oliver Heger
Reporter: Brian Pugh
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Commons Configuration

FileChangedReloadingStrategy not working for SubnodeConfiguration with a CombinedConfiguration parent

Created: 17/Oct/08 06:59 PM   Updated: 22/Aug/09 07:36 PM
Return to search
Component/s: File reloading
Affects Version/s: 1.5
Fix Version/s: 1.6

Time Tracking:
Not Specified

Resolution Date: 20/Oct/08 07:57 PM


 Description  « Hide
A SubnodeConfiguration that has a CombinedConfiguration as its parent, doesn't "hot" reload properties even if the combined configuration consists of XMLConfigurations that have the FileChangedReloadingStrategy set, the combined configuration has the setForceReloadCheck flag set and the SubnodeConfiguration was obtained by calling configurationAt method and passing in true for the "supportUpdates" flag.

Here's some code that shows the problem where the final assertion will fail.

@Test
public void testSubnodeReadload() throws ConfigurationException { XMLConfiguration xmlConfiguration = new XMLConfiguration("service.xml"); FileChangedReloadingStrategy fileReloadStrategy = new FileChangedReloadingStrategy(); fileReloadStrategy.setRefreshDelay(1000); xmlConfiguration.setReloadingStrategy(fileReloadStrategy); XMLConfiguration config2 = new XMLConfiguration("environment.xml"); FileChangedReloadingStrategy fileReloadStrategy2 = new FileChangedReloadingStrategy(); fileReloadStrategy2.setRefreshDelay(1000); xmlConfiguration.setReloadingStrategy(fileReloadStrategy2); CombinedConfiguration combinedConfig = new CombinedConfiguration(); combinedConfig.setForceReloadCheck(true); combinedConfig.addConfiguration(xmlConfiguration); combinedConfig.addConfiguration(config2); int queue0threads2 = xmlConfiguration.getInt("messaging-new.queue(0).threads"); assert 2 == queue0threads2; //change the value in service.xml to 4 int queue0threads4 = xmlConfiguration.getInt("messaging-new.queue(0).threads"); assert 4 == queue0threads4; SubnodeConfiguration subConfigHier = xmlConfiguration.configurationAt("messaging-new.queue(0)", true); int queue0threadsCombinedSub4 = subConfigHier.getInt("threads"); assert queue0threadsCombinedSub4 == 4; //change the value service.xml to 8 int queue0threadsCombinedSub8 = subConfigHier.getInt("threads"); assert queue0threadsCombinedSub8 == 8; SubnodeConfiguration subNodeConfigParentIsCombinedConfig = combinedConfig.configurationAt("messaging-new.queue(0)", true); int queue0threadsSub8 = subNodeConfigParentIsCombinedConfig.getInt("threads"); assert queue0threadsSub8 == 8; //change the value service.xml file to 16 int queue0threadsSub16 = subNodeConfigParentIsCombinedConfig.getInt("threads"); assert queue0threadsSub16 == 16; //THIS TEST FAILS }



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order