Spring Webflow XML 기반의<flow> 정의에서 구성 오류를 보고합니다.

예:


  <flow
    start-state="unknown-state" <!-- 심볼 'unknown-state'를 해결할 수 없습니다 ->
    parent="unknownParentFlow,another-flow" <!-- 흐름 'unknownParentFlow'를 찾을 수 없습니다 -->>

    <input name="" // 값이 비어 있으면 안 됩니다
         type="foo.com.UnknownType" <!-- 클래스 'UnknownType'을 해결할 수 없습니다 -->
         value="42"/>

    <exception-handler bean="dummyBean"; <!--Bean은 'org.springframework.webflow.engine.FlowExecutionExceptionHandler' 타입이어야 합니다 -->

    <view-state id="validFlowButInvalidState_forParent"
           parent="another-flow#unknownParentState"/> <!-- 상위 상태 'unknownParentState'를 해결할 수 없습니다 -->

    <bean-import resource="foo.xml" /> <!-- 파일 'foo.xml'을 해결할 수 없습니다-->
    <bean-import resource="highlighting-20-wrong-flow.xml"/> <!-- 올바른 spring.xml 파일이 아닙니다 -->
  </flow>