I m new to spring and m just trying on my hands using spring MVC 2.0 and spring webflow 1.0.

but i m getting following error might be when dispatcher deligate request to flow...

Configuration problem: Cannot locate BeanDefinitionParser for element [executor]

i have spring 2.0 jar file and webflow 1.0 jar file in application build path...

link|improve this question

56% accept rate
Firstly, we'll need more information than like, like seeing your configuration. Also, Both Spring 2.0 and Webflow 1.0 are very old. If you're just starting out with this stuff, then you should use the recent versions. – skaffman Apr 5 '10 at 10:32
Spring 2.0 configuration file.. <bean name="/phonebook.htm" class="org.springframework.webflow.executor.mvc.FlowController"> <property name="flowExecutor" ref="flowExecutor"/> </bean> <!-- Resolves flow view names to .jsp templates --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> – Yogi Apr 5 '10 at 10:37
Spring webflow 1.0 configuration file. <flow:executor id="flowExecutor" registry-ref="flowRegistry"/> <!-- Creates the registry of flow definitions for this application --> <flow:registry id="flowRegistry"> <flow:location path="/WEB-INF/flows/**-flow.xml"/> </flow:registry> – Yogi Apr 5 '10 at 10:38
feedback

2 Answers

OK, so it looks like the problem is with the <flow:executor> element in your webflow config. Spring is complaining that it doesn't understand what that means, and it's probably because you're missing the namespace declaration in the config file. This looks something like this:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:flow="http://www.springframework.org/schema/webflow-config"
       xsi:schemaLocation="
           http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/webflow-config
           http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd">

Your root element must look something like that. See documentation here.

link|improve this answer
Actually i was unable to post this namespace so i had posted only inner configuration part. Actually i do have same namespace in place..but it didn't work... – Yogi Apr 5 '10 at 11:03
@Yogi: The error message suggests otherwise, you've probably got something not quite right in there. Please edit your question and paste the whole contents of both config files. – skaffman Apr 5 '10 at 15:41
feedback

When eclipse deploy web application to tomcat it also deploy those jar files to lib directory which was not in build path.. so now when tomcat goes to execute.. it would probably find two jar files for web flow i.e. webflow 1.0 and webflow 2.0 And giving me the error.. i.e. when two different version jar files for webflow are in lib director.

i would also like to thank skaffman for his support..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.