Spring Webflow XML 기반의 컨텍스트 관련 문제를 보고합니다.

예:


  <beans ...
    xmlns:webflow="http://www.springframework.org/schema/webflow-config ...">
    
    <webflow:flow-executor id="flowExecutorWithoutFlowRegistryRef"/> <!-- "디폴트 id 'flowRegistry'를 가진 <flow-registry>를 찾을 수 없습니다 -->
    <webflow:flow-executor
      id=""  <!--값이 비어 있으면 안 됩니다-->
      flow-registry="INVALID_VALUE"  <!-- bean INVALID_VALUE를 해결할 수 없습니다 -->
           <webflow:flow-execution-repository
                   conversation-manager="dummyBean" <!-- Bean은 'org.springframework.webflow.conversation.ConversationManager' 타입이어야 합니다 -->
                    max-executions="INVALID_VALUE" <!-- 값이 정수여야 합니다 -->
                    max-execution-snapshots="INVALID_VALUE"/>  <!-- 값이 정수여야 합니다 -->
           <webflow:flow-execution-listeners>
			<webflow:listener criteria="*"
                           ref="dummyBean" /> <!-- Bean은 'org.springframework.webflow.execution.FlowExecutionListener' 타입이어야 합니다 -->
           </webflow:flow-execution-listeners>
    </webflow:flow-executor>
    <webflow:flow-executor id="dummy"
      flow-registry="dummyBean"/> <!-- Bean은 'org.springframework.webflow.definition.registry.FlowDefinitionRegistry' 타입이어야 합니다 -->

    <bean id="dummyBean" class="java.lang.String"/>
  </beans>