Hi,
I started to switch my commons-configuration based configuration from a JBoss
installation to a tamaya based configuration on Karaf. It seems that Tamaya
currently only provides xml configurations matching the properties DOCTYPE. I
would assume that a xml like:
<configuration>
<validation>
<rules name="requestpath.validation">
<source>pra/rules/request/requestpath/validation/requestPath.drl</source>
<process name="requestPath" />
</rules>
</validation>
</configuration>
would give me
key: validation.rules.source, value:
pra/rules/request/requestpath/validation/requestPath.drl
key: validation.rules.process[@name], value: requestPath
key: validation.rules[@name], value: requestpath.validation
Do I have to implement my own PropertySource to handle this with commons
configuration or is there another way to handle this?
Cheers,
Christian