无法找到元素“flow”的 Spring NamespaceHandler;

发布于 2024-09-29 14:21:15 字数 1488 浏览 3 评论 0原文

我正在使用 SpringSource Tool Suite 开发一个 spring webflow (2.0.7) 项目。我正在尝试设置一个基本流程。

我的 someflow.xml 如下所示:

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

             <!- view-state declarations -->
    </flow>

在 STS 工具(Eclipse 上的 Spring IDE)上,我在流 schemaLocation 附近看到一条警告消息:

无法找到架构命名空间“http://”的元素“flow”的 Spring NamespaceHandler www.springframework.org/schema/webflow'

然后当tomcat启动时,我收到错误

org.springframework.beans.factory.parsing.BeanDefinitionParsingException:配置问题:无法找到 XML 模式命名空间的 Spring NamespaceHandler [http://www.springframework.org/schema/webflow] 违规资源:ServletContext 资源 [/WEB-INF/flows/someflow.xml]

  • 我用 google 搜索了一段时间,一些帖子表明问题是 spring-webflow jar 不在类路径中。就我而言,springsource 工具创建了模板,并且所有 jar 都已就位。我也手动检查过它们。所以这不可能是问题

  • 这篇文章中的建议之一 http://forum.springsource.org/archive/index.php/t-49098.html是拼接jar的!这不是一个解决方案,但我尝试看看它是否可以解决问题。但没有。

现在卡住了..还有其他人遇到这个问题吗?

I am developing a spring webflow (2.0.7) project using SpringSource Tool Suite. I am trying to setup a basic flow.

My someflow.xml looks like this:

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

             <!- view-state declarations -->
    </flow>

On STS tool(Spring IDE on eclipse), I see a warning message near the flow schemaLocation:

Unable to locate Spring NamespaceHandler for element 'flow' of schema namespace 'http://
www.springframework.org/schema/webflow'

Then when tomcat starts up, I get the error

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/webflow]
Offending resource: ServletContext resource [/WEB-INF/flows/someflow.xml]

  • I googled a while and some posts suggested that the problem is spring-webflow jars not being in class path. In my case, springsource tool created the template and all jars are in place. I manually checked them as well. So that can't be the issue

  • One of the suggestions in this post http://forum.springsource.org/archive/index.php/t-49098.html was to splice the jar! That can't be a solution, but I tried to see if it fixes it. But no.

Stuck now.. Did anyone else face this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

無處可尋 2024-10-06 14:21:15

我以前也遇到过类似的问题,通常可以归结为构建战争中丢失的罐子。您可以打开您正在使用的war并检查webflow jar是否位于/WEB-INF/lib目录中?

如果您使用 Maven 进行构建,请同时检查 webflow 的依赖项设置。

I've had similar issues before and it usually boiled down to the jar missing from the built war. Can you open up the war you are using and check that the webflow jar is in the /WEB-INF/lib directory?

If you are using Maven to do your builds, check your dependency settings for webflow as well.

玻璃人 2024-10-06 14:21:15

如果您使用的是 eclipse,请提供应用程序资源路径名,右键单击您的测试用例,选择运行为 -->运行配置 -->单击“类路径”选项卡并复制以下行并提供属性文件位置的完整路径名。
appResourcePath = ../../environment-dev.properties)。

if you are using eclipse,please provide the appresource path name,right click on your test case select Run as --> Run Configurations --> click on the Classpath tab and copy the below line and give the full path name of your property file location.
appResourcePath = ../../environment-dev.properties).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文