0

我是 Spring Integration 和 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:si="http://www.springframework.org/schema/integration"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="

http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration-2.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<context:component-scan base-package="com.springProject.app"/>
<int:channel id="input"/>
<int:channel id="output">
    <int:queue capacity="10"/>
</int:channel>


<int:service-activator input-channel="input"
                       output-channel="output"
                       ref="messageHandler"/>
</beans>

但是 IDE 给了我错误,告诉我“命名空间 'int' 未绑定”。有谁知道错误可能在哪里?提前致谢!

4

2 回答 2

1

当前集成 xmlns 绑定到前缀 si,将其更改为 int。

<?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:int="http://www.springframework.org/schema/integration"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="

注意第四行的变化

int或者,您可以更改所有以to为前缀的标签si,例如:

<si:channel id="input"/>
<si:channel id="output">
    <si:queue capacity="10"/>
</si:channel>
于 2013-01-15T09:57:16.037 回答
0

在 beans 标签 xmlns:mvc="http://www.springframework.org/schema/mvc"中添加下一个文本 ,并保存 xml 文件。

于 2016-07-13T06:07:28.070 回答