当我尝试将Spring JMS集成到我当前的项目中时,我一直有这个错误。它正在推动我上升,我不完全确定如何修复它,因为我是Spring的新手。
The prefix "jms" for element "jms:listener-container" is not bound.
有问题的代码就是这个,
<jms:listener-container container-type="default" connection-factory="connectionFactory" acknowledge="auto">
<jms:listener destination="TESTQUEUE" ref="simpleMessageListener" method="onMessage" />
</jms:listener-container>
我很确定它与jms:namespace有关但我不知道如何修复它,因为在我的程序抱怨p:namespace之前所以我不得不将它更改为property name =“some值“reference =”someReference“
答案 0 :(得分:4)
确保您的上下文文件中包含jms名称空间:
<?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:jms="http://www.springframework.org/schema/jms"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.0.xsd">
<!-- <bean/> definitions here -->
</beans>
有关详细信息,请参阅http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/jms.html。