Versions Compared

Key

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

...

(warning) the scenario details here are currently copied from unit tests. We should replace with the big bank scenario now that is being checked in.

Anchor
Scenario1
Scenario1
1. Use implementation.composite as a component implementation - Implicit declaration

A Spring component acts within a business process accepting call from client components and send on calls to other components. The operation of the component in the Spring assembly is controlled through SCA properties.Here the component type is derived from the spring implementation with no SCA specific entries in the spring application context.

...

Code Block
    <component name="ClientComponent">
        <implementation.java class="org.apache.tuscany.sca.implementation.spring.itests.helloworld.HelloWorldProxy"/>
        <reference name="delegate" target="SpringComponent"/>
    </component>

    <component name="SpringComponent">
        <implementation.spring location="META-INF/sca/SpringComponent-context.xml"/>
        <reference name="testReference" target="ReferenceComponent"/>
        <property name="testProperty">Hello</property>
    </component>

    <component name="ReferenceComponent">
        <implementation.java class="org.apache.tuscany.sca.implementation.spring.itests.helloworld.HelloWorldImpl"/>
    </component>

Anchor
Scenario2
Scenario2
2. Use implementation.composite as a component implementation - Explicit declaration

A Spring component acts within a business process accepting call from client components and send on calls to other components. The operation of the component in the Spring assembly is controlled through SCA properties. Here the component type is derived from the spring implementation with no SCA specific entries in the spring application context.

...

The SpringComponent successfully operates performs HelloWorld actions in the context of the configuration from the composite file.

Anchor
Scenario3
Scenario3
3. Working with different bindings

The SpringComponent implementation remains the same but different bindings are chosen.

...