The Talon Manual

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleDDL With Profile
<model>

  <buses>
    <bus name="order-processing-bus" descriptor="activemq://activemq-host:61616">
      ...
    </bus>
  <buses>
 
  <profiles>
    <profile name="test">
      <env>
        <nv.discovery.descriptor>loopback://test&amp;initWaitTime=0</nv.discovery.descriptor>
      </env>
      <buses>
        <bus name="order-processing-bus" descriptor="loopback://order-processing"/>
      <buses>
    </profile>
  </profiles>
</model>

would resolve to the following when -Dnv.ddl.profiles=test is set during DDL parsing:

Code Block
languagexml
titleResolved DDL (With Profile Resolved Applied and Removed)
<model>
  <env>
    <nv.discovery.descriptor>loopback://test&amp;initWaitTime=0</nv.discovery.descriptor>
  </env>
  <buses>
    <bus name="order-processing-bus" descriptor="loopback://order-processing"/>
      ...
    </bus>
  <buses>
</model>

...