Spring WS 教程:找不到元素“context:component-scan”的声明错误

发布于 2024-11-25 11:30:45 字数 1226 浏览 1 评论 0原文

我正在逐步执行此操作(基本上是复制和粘贴内容) spring-ws 教程,我在配置 spring-ws-servlet.xml 时遇到了困难,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:sws="http://www.springframework.org/schema/web-services"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/web-services
    http://www.springframework.org/schema/web-services/web-services-2.0.xsd">

    <context:component-scan base-package="com.mycompany.hr"/>

    <sws:annotation-driven/>

</beans>

添加以下行:

<context:component-scan base-package="com.mycompany.hr"/>

make STS 开始对我大喊大叫:

cvc-complex-type.2.4.c: The matching wildcard is strict,
but no declarationcan be found for element 'context:component-scan'.

我不知道如何继续..

I'm following step-by-step (basically copying and pasting stuff) this spring-ws tutorial and I just hit a wall when configuring the spring-ws-servlet.xml as below:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:sws="http://www.springframework.org/schema/web-services"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/web-services
    http://www.springframework.org/schema/web-services/web-services-2.0.xsd">

    <context:component-scan base-package="com.mycompany.hr"/>

    <sws:annotation-driven/>

</beans>

Adding the following line:

<context:component-scan base-package="com.mycompany.hr"/>

make STS starts yelling at me that:

cvc-complex-type.2.4.c: The matching wildcard is strict,
but no declarationcan be found for element 'context:component-scan'.

I don't know how to proceed..

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

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

发布评论

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

评论(1

番薯 2024-12-02 11:30:45

您需要添加:
http://www.springframework.org/schema/context http://www.springframework。 org/schema/context/spring-context-3.0.xsd

到 schemaLocation。

You need to add:
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd

to the schemaLocation.

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