Spring Web Flow 를 사용하기 위한 Web 개발환경에 대한 세팅을 설명하겠다.
Spring Web Flow 의 Flow 정의를 위한 XML 문서는 아래와 같은 Schema를 갖는다.
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:webflow="http://www.springframework.org/schema/webflow-config" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/webflow-config http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.3.xsd"> <!-- Setup Web Flow here --> </beans>
Spring Web Flow를 사용하기 해서는 FlowRegistry와 FlowExecutor를 설정해야 한다.
FlowRegistry는 등록될 시나리오에 따라 작성된 Flow.xml 을 가져오는 역할[1]을 수행한다.
FlowExecutor는 등록된 Flow 설정 XML을 실행[2]한다. Spring MVC와 결합하여 Web Flow 시스템이 실행되는 부분에 대해 이후에 설명한다.
<!-- [1] Flow 설정 파일 등록--> <webflow:flow-registry id="flowRegistry"> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml"/> </webflow:flow-registry> <!-- [2] Flow 실행의 중추 역할을 하는 서비스 제공--> <webflow:flow-executor id="flowExecutor"/>
flow-registry는 아래 보는 것과 같이 설정을 할 수 있다.
<!-- [1]기본은 이름-flow.xml이지만, 직접 지정할 수도 있다. --> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml" /> <!-- [2]id로 식별이 가능하도록 할 수도 있다 --> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml" id="bookHotel" /> <!-- [3]메타 정보도 등록할 수 있다. --> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml"> <flow-definition-attributes> <attribute name="caption" value="Books a hotel" /> </flow-definition-attributes> </webflow:flow-location> <!-- [4]ANT 패턴을 지정할 수도 있다. --> <webflow:flow-location-pattern value="/WEB-INF/flows/**/*-flow.xml" /> <!-- [5]기본 앞 첨자 경로를 지정해서 위치를 조합해서 사용할 수도 있다. Flow 정의 파일은 모듈화를 높이기 위해서 관련 있는 폴더에 각각 위치해 있는게 가장 좋다. --> <webflow:flow-registry id="flowRegistry" base-path="/WEB-INF"> <webflow:flow-location path="/hotels/booking/booking.xml" /> </webflow:flow-registry> <!-- [6]Flow 상속 구조 구성 가능 --> <!-- my-system-config.xml --> <webflow:flow-registry id="flowRegistry" parent="sharedFlowRegistry"> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml" /> </webflow:flow-registry> <!-- shared-config.xml --> <webflow:flow-registry id="sharedFlowRegistry"> <!-- Global flows shared by several applications --> </webflow:flow-registry>
flow-registry에서 flow-builder-services 는 flow를 구축하는데 사용되는 서비스나 설정 등을 커스터마이징 할 수 있다.
지정하지 않는 경우에는 기본 서비스가 사용 된다.
<webflow:flow-registry id="flowRegistry" flow-builder-services="flowBuilderServices"> <webflow:flow-location path="/WEB-INF/flows/booking/booking.xml" /> </webflow:flow-registry> <webflow:flow-builder-services id="flowBuilderServices" />
SWF 시스템에서 사용하는 ConversionService를 커스터마이징. Flow 실행 동안에 필요한 경우 특정 타입을 다른 타입으로 변환해 줌(propertyEditor 성격)
ExpressionParser 커스터마이징하는데 사용. 기본은 Unified EL이 사용되며, 사용하는 영역은 classpath 이다. 다른 ExpressionParser로는 OGNL이 사용 됨.
ViewFactoryCreator 를 커스터마이징. 디폴트 ViewFactoryCreator 는 JSP, Velocity, Freemaker 등을 화면에 보여주게 해주는 Spring MVC ViewFactories로 되어 있음.
Flow 개발 모드 설정. true인 경우, Flow 정의가 변경되면 hot-reloading 적용(message bundles 과 같은 리소스 포함).
별도로 커스터마이징 된경우
<webflow:flow-builder-services id="flowBuilderServices" conversion-service="conversionService" expression-parser="expressionParser" view-factory-creator="viewFactoryCreator" /> <bean id="conversionService" class="..." /> <bean id="expressionParser" class="..." /> <bean id="viewFactoryCreator" class="..." />
Flow 실행의 Lifecycle 에 관련된 리스너(listener) 는 flow-execution-listeners 를 이용하여 등록한다.
<flow-execution-listeners> <listener ref="securityListener" /> <listener ref="persistenceListener" /> </flow-execution-listeners>
또한 특정 흐름에 대해서만 적용 가능하다.
<listener ref="securityListener" criteria="securedFlow1,securedFlow2"/>
<flow-execution-repository max-executions="5" max-execution-snapshots="30" />
사용자 세션 당 생성될 수 있는 Flow 실행 개수 지정
Flow 실행 당 받을 수 있는 이력 snapshot 개수 지정. snapshot을 사용하지 못하게 하려면, 0으로 지정. 제한이 없게 하려면 -1로 설정.