How to configure Spring Webflow -


i setting environment. i'm getting error whenever adding xml bean files spring elements:

cannot locate beandefinitionparser element [flow:executor]

my flow is:

<webflow:flow-executor id="flowexecutor" >         <webflow:flow-execution-listeners>             <webflow:listener ref="jpaflowexecutionlistener" />             <webflow:listener ref="facescontextlistener" />         </webflow:flow-execution-listeners>     </webflow:flow-executor> 

and default configurations are:

<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"        xmlns:faces="http://www.springframework.org/schema/faces"        xsi:schemalocation="             http://www.springframework.org/schema/beans            http://www.springframework.org/schema/beans/spring-beans-4.0.xsd            http://www.springframework.org/schema/webflow-config            http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.4.xsd             http://www.springframework.org/schema/faces             http://www.springframework.org/schema/faces/spring-faces.xsd"> 


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -