[jboss-jira] [JBoss JIRA] (AS7-6233) System properties referencing each other in domain mode do not work
Kabir Khan (JIRA)
jira-events at lists.jboss.org
Thu Dec 20 08:34:08 EST 2012
Kabir Khan created AS7-6233:
-------------------------------
Summary: System properties referencing each other in domain mode do not work
Key: AS7-6233
URL: https://issues.jboss.org/browse/AS7-6233
Project: Application Server 7
Issue Type: Feature Request
Reporter: Kabir Khan
The following set up:
{code}
<system-properties>
<property name="one" value="one1"/>
<property name="two" value="${one}"/>
</system-properties>
{code}
works in standalone, so
{code}
[standalone at localhost:9999 /] :resolve-expression(expression="${two}")
{
"outcome" => "success",
"result" => "one1"
}
{code}
However, in domain mode the properties get passed in in the wrong order so
{code}
[domain at localhost:9999 /] /host=master/server=server-one:resolve-expression(expression="${two}")
{
"outcome" => "success",
"result" => "${one}"
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list