0

Suppose that flow A has subflow B, which in turn has subflow C. Is there a scope that would be visible in B and C, but not in A?

SimonT
  • 2,219
  • 1
  • 18
  • 32

1 Answers1

0

If you just want an obj to be visible in Subflow C (from subflow B) You could just pass the pojo/obj DIRECTLY from Subflow B -> Subflow C via params using 'input' and 'output' tags and avoid using scopes all together.

See this post for an example:

Spring Flow: Pass object back and forth from between Main WebFlow and Subflow

Community
  • 1
  • 1
Selwyn
  • 3,118
  • 1
  • 26
  • 33