我是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'没有绑定”。有人知道错误的位置吗?提前谢谢!
答案 0 :(得分: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
的所有代码更改为si
,例如:
<si:channel id="input"/>
<si:channel id="output">
<si:queue capacity="10"/>
</si:channel>
答案 1 :(得分:0)
在beans标记中添加下一个文本 的xmlns:MVC =&#34; HTTP://www.springframework.org/schema/mvc" ,并保存xml文件。